Changeset 21976 for trunk/src/oleacc
- Timestamp:
 - Feb 27, 2012, 6:47:33 PM (14 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/src/oleacc/initterm.cpp (modified) (3 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/oleacc/initterm.cpp
r21916 r21976 50 50 } 51 51 52 ULONG SYSTEM DLL_Init MSCms(ULONG hModule)52 ULONG SYSTEM DLL_InitOleAcc(ULONG hModule) 53 53 { 54 54 if (!InitializeKernel32()) 55 return 0;55 return -1; 56 56 57 57 CheckVersionFromHMOD(PE2LX_VERSION, hModule); /*PLF Wed 98-03-18 05:28:48*/ … … 61 61 return -1; 62 62 63 dprintf(("oleacc init %s %s (%x)", __DATE__, __TIME__, DLL_Init MSCms));63 dprintf(("oleacc init %s %s (%x)", __DATE__, __TIME__, DLL_InitOleAcc)); 64 64 65 65 return 0; 66 66 } 67 67 68 void SYSTEM DLL_Term MSCms(ULONG hModule)68 void SYSTEM DLL_TermOleAcc(ULONG hModule) 69 69 { 70 70 if (dllHandle) … … 76 76 if (DLL_InitDefault(hModule) == -1) 77 77 return -1; 78 return DLL_Init MSCms(hModule);78 return DLL_InitOleAcc(hModule); 79 79 } 80 80 81 81 void SYSTEM DLL_Term(ULONG hModule) 82 82 { 83 DLL_Term MSCms(hModule);83 DLL_TermOleAcc(hModule); 84 84 DLL_TermDefault(hModule); 85 85 }  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  