Changeset 6472 for trunk/src/custombuild/initterm.cpp
- Timestamp:
- Aug 6, 2001, 9:37:25 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/custombuild/initterm.cpp
r6459 r6472 133 133 SetRegistryRootKey(HKEY_USERS, hKeyUsers); 134 134 135 SetCustomBuildName("NTDLL.DLL" );136 if(RegisterLxDll(hModule, NULL, (PVOID)NULL) == 0) 137 return 0UL; 138 139 SetCustomBuildName("KERNEL32.DLL" );135 SetCustomBuildName("NTDLL.DLL", 0); 136 if(RegisterLxDll(hModule, NULL, (PVOID)NULL) == 0) 137 return 0UL; 138 139 SetCustomBuildName("KERNEL32.DLL", ORDINALBASE_KERNEL32); 140 140 rc = inittermKernel32(hModule, ulFlag); 141 141 if(rc == 0) 142 142 return 0UL; 143 143 144 SetCustomBuildName("USER32.DLL" );144 SetCustomBuildName("USER32.DLL", ORDINALBASE_USER32); 145 145 rc = inittermUser32(hModule, ulFlag); 146 146 if(rc == 0) 147 147 return 0UL; 148 148 149 SetCustomBuildName("GDI32.DLL" );150 if(RegisterLxDll(hModule, NULL, (PVOID)NULL) == 0) 151 return 0UL; 152 153 SetCustomBuildName("ADVAPI32.DLL" );154 if(RegisterLxDll(hModule, NULL, (PVOID)NULL) == 0) 155 return 0UL; 156 157 SetCustomBuildName("VERSION.DLL" );158 if(RegisterLxDll(hModule, NULL, (PVOID)NULL) == 0) 159 return 0UL; 160 161 SetCustomBuildName("WSOCK32.DLL" );149 SetCustomBuildName("GDI32.DLL", ORDINALBASE_GDI32); 150 if(RegisterLxDll(hModule, NULL, (PVOID)NULL) == 0) 151 return 0UL; 152 153 SetCustomBuildName("ADVAPI32.DLL", 0); 154 if(RegisterLxDll(hModule, NULL, (PVOID)NULL) == 0) 155 return 0UL; 156 157 SetCustomBuildName("VERSION.DLL", 0); 158 if(RegisterLxDll(hModule, NULL, (PVOID)NULL) == 0) 159 return 0UL; 160 161 SetCustomBuildName("WSOCK32.DLL", ORDINALBASE_WSOCK32); 162 162 rc = inittermWsock32(hModule, ulFlag); 163 163 if(rc == 0) 164 164 return 0UL; 165 165 166 SetCustomBuildName("WINMM.DLL" );166 SetCustomBuildName("WINMM.DLL", 0); 167 167 rc = inittermWinmm(hModule, ulFlag); 168 168 if(rc == 0) 169 169 return 0UL; 170 170 171 SetCustomBuildName("RPCRT4.DLL" );171 SetCustomBuildName("RPCRT4.DLL", 0); 172 172 rc = inittermRpcrt4(hModule, ulFlag); 173 173 if(rc == 0) 174 174 return 0UL; 175 175 176 SetCustomBuildName("OLE32.DLL" );176 SetCustomBuildName("OLE32.DLL", ORDINALBASE_OLE32); 177 177 rc = inittermOle32(hModule, ulFlag); 178 178 if(rc == 0) 179 179 return 0UL; 180 180 181 SetCustomBuildName("COMCTL32.DLL" );181 SetCustomBuildName("COMCTL32.DLL", ORDINALBASE_COMCTL32); 182 182 rc = inittermComctl32(hModule, ulFlag); 183 183 if(rc == 0) 184 184 return 0UL; 185 185 186 SetCustomBuildName("SHELL32.DLL"); 186 SetCustomBuildName("SHLWAPI.DLL", ORDINALBASE_SHLWAPI); 187 if(RegisterLxDll(hModule, NULL, (PVOID)NULL) == 0) 188 return 0UL; 189 190 SetCustomBuildName("SHELL32.DLL", ORDINALBASE_SHELL32); 187 191 rc = inittermShell32(hModule, ulFlag); 188 192 if(rc == 0) 189 193 return 0UL; 190 194 191 SetCustomBuildName("COMDLG32.DLL" );195 SetCustomBuildName("COMDLG32.DLL", 0); 192 196 rc = inittermComdlg32(hModule, ulFlag); 193 197 if(rc == 0) 194 198 return 0UL; 195 199 196 SetCustomBuildName(NULL );200 SetCustomBuildName(NULL, 0); 197 201 break; 198 202 }
Note:
See TracChangeset
for help on using the changeset viewer.