Changeset 21735 for branches/gcc-kmk/src
- Timestamp:
- Oct 24, 2011, 8:05:50 PM (14 years ago)
- Location:
- branches/gcc-kmk/src
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/crypt32/initcrypt32.cpp
r21649 r21735 88 88 case 0 : 89 89 90 if ( InitializeKernel32() == 0)90 if (!InitializeKernel32()) 91 91 return 0; 92 92 -
branches/gcc-kmk/src/gdi32/initgdi32.cpp
r21649 r21735 99 99 ParseLogStatusGDI32(); 100 100 101 if ( InitializeKernel32() == 0)101 if (!InitializeKernel32()) 102 102 return 0; 103 103 -
branches/gcc-kmk/src/mscms/initmscms.cpp
r21649 r21735 88 88 case 0 : 89 89 90 if ( InitializeKernel32() == 0)90 if (!InitializeKernel32()) 91 91 return 0; 92 92 -
branches/gcc-kmk/src/ntdll/initntdll.c
r21649 r21735 54 54 55 55 //Initialize kernel32 first (circular dependency between kernel32 & ntdll) 56 if ( InitializeKernel32() == 0)56 if (!InitializeKernel32()) 57 57 return 0; 58 58 -
branches/gcc-kmk/src/oleacc/initoleacc.cpp
r21649 r21735 88 88 case 0 : 89 89 90 if ( InitializeKernel32() == 0)90 if (!InitializeKernel32()) 91 91 return 0; 92 92 -
branches/gcc-kmk/src/rsaenh/initrsaenh.cpp
r21649 r21735 88 88 case 0 : 89 89 90 if ( InitializeKernel32() == 0)90 if (!InitializeKernel32()) 91 91 return 0; 92 92 -
branches/gcc-kmk/src/schannel/initschannel.cpp
r21649 r21735 88 88 case 0 : 89 89 90 if ( InitializeKernel32() == 0)90 if (!InitializeKernel32()) 91 91 return 0; 92 92 -
branches/gcc-kmk/src/secur32/initsecur32.cpp
r21649 r21735 88 88 case 0 : 89 89 90 if ( InitializeKernel32() == 0)90 if (!InitializeKernel32()) 91 91 return 0; 92 92 -
branches/gcc-kmk/src/user32/controls/initodinctrl.cpp
r21649 r21735 67 67 ParseLogStatusOdinCtrl(); 68 68 69 if ( InitializeKernel32() == 0)69 if (!InitializeKernel32()) 70 70 return 0; 71 71 -
branches/gcc-kmk/src/user32/inituser32.cpp
r21649 r21735 174 174 ParseLogStatusUSER32(); 175 175 176 if ( InitializeKernel32() == 0)176 if (!InitializeKernel32()) 177 177 return 0; 178 178
Note:
See TracChangeset
for help on using the changeset viewer.