e718fb324b
Since the current winpr implementation for overlapped operations is incomplete and buggy, all affected functions will now fail if they are called with a set FILE_FLAG_OVERLAPPED flag or a non-null pointer to a OVERLAPPED structure. winpr/nt: - use proper one-time initialization on win32 - fix TestNtCreateFile - fix broken/incomplete _RtlAnsiStringToUnicodeString - unimplemented functions return appropriate error codes winpr/pipe: - improved TestPipeCreateNamedPipe - rewrite the completely broken TestPipeCreateNamedPipeOverlapped test rdtk: - improve test and don't blindly return success winpr/synch: - fix race condition in TestSynchTimerQueue winpr/ssspi: - fix TestEnumerateSecurityPackages printf output - fix TestQuerySecurityPackageInfo printf output winpr/environment: - fix GetEnvironmentStrings printf output winpr/comm: - unimplemented functions return appropriate error codes winpr/io: - unimplemented functions return appropriate error codes winpr/thread: - implement SwitchToThread() via sched_yield()
38 lines
716 B
C
38 lines
716 B
C
|
|
#include <stdio.h>
|
|
#include <winpr/crt.h>
|
|
#include <winpr/sspi.h>
|
|
#include <winpr/winpr.h>
|
|
#include <winpr/tchar.h>
|
|
|
|
int TestEnumerateSecurityPackages(int argc, char* argv[])
|
|
{
|
|
int index;
|
|
ULONG cPackages;
|
|
SECURITY_STATUS status;
|
|
SecPkgInfo* pPackageInfo;
|
|
|
|
sspi_GlobalInit();
|
|
|
|
status = EnumerateSecurityPackages(&cPackages, &pPackageInfo);
|
|
|
|
if (status != SEC_E_OK)
|
|
{
|
|
sspi_GlobalFinish();
|
|
return -1;
|
|
}
|
|
|
|
_tprintf(_T("\nEnumerateSecurityPackages (%d):\n"), (unsigned int)cPackages);
|
|
|
|
for (index = 0; index < (int) cPackages; index++)
|
|
{
|
|
_tprintf(_T("\"%s\", \"%s\"\n"), pPackageInfo[index].Name, pPackageInfo[index].Comment);
|
|
}
|
|
|
|
FreeContextBuffer(pPackageInfo);
|
|
sspi_GlobalFinish();
|
|
|
|
return 0;
|
|
}
|
|
|