Changeset 21720 for branches/gcc-kmk/src/kernel32/process.cpp
- Timestamp:
- Oct 19, 2011, 11:26:02 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/kernel32/process.cpp
r21716 r21720 27 27 #include <misc.h> 28 28 #include <wprocess.h> 29 #include <win \task.h>29 #include <win/task.h> 30 30 #include "winimagebase.h" 31 31 #include "oslibdos.h" … … 151 151 * GetProcessHeaps [KERNEL32.376] 152 152 */ 153 DWORD WINAPI GetProcessHeaps(DWORD nrofheaps,HANDLE *heaps) 153 DWORD WINAPI GetProcessHeaps(DWORD nrofheaps,HANDLE *heaps) 154 154 { 155 155 dprintf(("GetProcessHeaps: (%ld,%p), incomplete implementation.\n",nrofheaps,heaps)); … … 310 310 if ( !process ) return 0; 311 311 312 switch ( offset ) 312 switch ( offset ) 313 313 { 314 314 case GPD_APP_COMPAT_FLAGS: … … 379 379 380 380 /*********************************************************************** 381 * ODIN_SetProcessDword 381 * ODIN_SetProcessDword 382 382 * 383 383 * SvL: Special version that allows the caller to change some values … … 391 391 if ( !process ) return; 392 392 393 switch ( offset ) 393 switch ( offset ) 394 394 { 395 395 case GPD_STARTF_SHOWWINDOW: … … 424 424 if ( !process ) return; 425 425 426 switch ( offset ) 426 switch ( offset ) 427 427 { 428 428 case GPD_APP_COMPAT_FLAGS: … … 444 444 445 445 case GPD_USERDATA: 446 process->process_dword = value; 446 process->process_dword = value; 447 447 break; 448 448 … … 488 488 if(!NtdllRtlExtendedIntegerMultiply) { 489 489 HINSTANCE hInstance = LoadLibraryA("NTDLL.DLL"); 490 if(hInstance) 490 if(hInstance) 491 491 *(VOID **)&NtdllRtlExtendedIntegerMultiply=(void*)GetProcAddress(hInstance, (LPCSTR)"RtlExtendedIntegerMultiply"); 492 492 }
Note:
See TracChangeset
for help on using the changeset viewer.