[pywin32-checkins] pywin32/win32/src win32rasmodule.cpp,1.15,1.16
OLD project page for the Python extensions for Windows
                
                Brought to you by:
                
                    mhammond
                    
                
            
            
        
        
        
    | 
      
      
      From: Mark H. <mha...@us...> - 2009-01-27 06:27:18
      
     | 
| Update of /cvsroot/pywin32/pywin32/win32/src In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv24522/win32/src Modified Files: win32rasmodule.cpp Log Message: Use more recent WINVER to enable user identity functionality Index: win32rasmodule.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/win32rasmodule.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** win32rasmodule.cpp 11 Dec 2008 00:25:40 -0000 1.15 --- win32rasmodule.cpp 27 Jan 2009 06:27:09 -0000 1.16 *************** *** 14,23 **** #ifndef WINVER // hrm - the RASEAPUSERIDENTITY structures on the Vista SDK now want ! // a WINVER > 0x500. ! # ifdef _WIN64 ! # define WINVER 0x501 ! # else ! # define WINVER 0x400 ! # endif #endif --- 14,18 ---- #ifndef WINVER // hrm - the RASEAPUSERIDENTITY structures on the Vista SDK now want ! #define WINVER 0x501 #endif *************** *** 91,97 **** if (pfnPyWinObject_AsRASEAPUSERIDENTITY == NULL) { #ifdef _DEBUG ! HMODULE hmod = GetModuleHandle("win2kras_d.pyd"); #else ! HMODULE hmod = GetModuleHandle("win2kras.pyd"); #endif if (hmod==NULL) { --- 86,92 ---- if (pfnPyWinObject_AsRASEAPUSERIDENTITY == NULL) { #ifdef _DEBUG ! HMODULE hmod = GetModuleHandle(_T("win2kras_d.pyd")); #else ! HMODULE hmod = GetModuleHandle(_T("win2kras.pyd")); #endif if (hmod==NULL) { |