Update of /cvsroot/pywin32/pywin32/win32/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29244
Modified Files:
PyWinTypesmodule.cpp
Log Message:
Correct brace placement loading function pointers from AdvAPI32.dll
Index: PyWinTypesmodule.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/src/PyWinTypesmodule.cpp,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** PyWinTypesmodule.cpp 30 Nov 2004 21:30:29 -0000 1.18
--- PyWinTypesmodule.cpp 6 Mar 2005 13:15:06 -0000 1.19
***************
*** 593,600 ****
if (fp)
addauditaccessobjectace=(BOOL (WINAPI *)(PACL,DWORD,DWORD,DWORD,GUID*,GUID*,PSID,BOOL,BOOL))(fp);
- }
fp=GetProcAddress(hmodule,"SetSecurityDescriptorControl");
if (fp)
setsecuritydescriptorcontrol=(BOOL (WINAPI *)(PSECURITY_DESCRIPTOR, SECURITY_DESCRIPTOR_CONTROL, SECURITY_DESCRIPTOR_CONTROL))(fp);
#endif // NO_PYWINTYPES_SECURITY
--- 593,600 ----
if (fp)
addauditaccessobjectace=(BOOL (WINAPI *)(PACL,DWORD,DWORD,DWORD,GUID*,GUID*,PSID,BOOL,BOOL))(fp);
fp=GetProcAddress(hmodule,"SetSecurityDescriptorControl");
if (fp)
setsecuritydescriptorcontrol=(BOOL (WINAPI *)(PSECURITY_DESCRIPTOR, SECURITY_DESCRIPTOR_CONTROL, SECURITY_DESCRIPTOR_CONTROL))(fp);
+ }
#endif // NO_PYWINTYPES_SECURITY
|