Changeset 21976 for trunk/src/gdi32/initterm.cpp
- Timestamp:
- Feb 27, 2012, 6:47:33 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/initterm.cpp
r21916 r21976 65 65 66 66 if (!InitializeKernel32()) 67 return 0;67 return -1; 68 68 69 69 CheckVersionFromHMOD(PE2LX_VERSION, hModule); /*PLF Wed 98-03-18 05:28:48*/ 70 if(InitRegionSpace() == FALSE) 71 { 72 return 0UL; 73 } 70 if (InitRegionSpace() == FALSE) 71 return -1; 74 72 75 73 DIBSection::initDIBSection(); 76 if (CPUFeatures & CPUID_MMX)74 if (CPUFeatures & CPUID_MMX) 77 75 { 78 76 pRGB555to565 = RGB555to565MMX; … … 88 86 GDI32_MAJORIMAGE_VERSION, GDI32_MINORIMAGE_VERSION, 89 87 IMAGE_SUBSYSTEM_NATIVE); 90 if (dllHandle == 0)91 return 0UL;88 if (dllHandle == 0) 89 return -1; 92 90 93 91 dprintf(("gdi32 init %s %s (%x)", __DATE__, __TIME__, DLL_InitGdi32));
Note:
See TracChangeset
for help on using the changeset viewer.