Changeset 4451 for trunk/src/kernel32/toolhelp.cpp
- Timestamp:
- Oct 8, 2000, 4:01:02 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/toolhelp.cpp
r2802 r4451 1 /* $Id: toolhelp.cpp,v 1. 2 2000-02-16 14:23:12 sandervl Exp $ */1 /* $Id: toolhelp.cpp,v 1.3 2000-10-08 14:01:02 sandervl Exp $ */ 2 2 3 3 /* … … 23 23 #include "winerror.h" 24 24 #include "tlhelp32.h" 25 #include "toolhelp.h"26 25 27 26 #define DBG_LOCALLOG DBG_toolhelp … … 37 36 DWORD,dwProcess) 38 37 { 39 dprintf(("KERNEL32: CreateToolhelp32Snapshot not implemented.\n"));38 dprintf(("KERNEL32: CreateToolhelp32Snapshot %x %x not implemented, dwFlags, dwProcess")); 40 39 SetLastError( ERROR_CALL_NOT_IMPLEMENTED ); 41 40 return INVALID_HANDLE_VALUE; … … 49 48 */ 50 49 ODINFUNCTION2(BOOL,Process32First,HANDLE, hSnapshot, 51 LPPROCESSENTRY ,lppe)50 LPPROCESSENTRY32,lppe) 52 51 { 53 dprintf(("KERNEL32: Process32First not implemented.\n"));52 dprintf(("KERNEL32: Process32First %x %x not implemented", hSnapshot, lppe)); 54 53 SetLastError( ERROR_CALL_NOT_IMPLEMENTED ); 55 54 return FALSE; … … 62 61 */ 63 62 ODINFUNCTION2(BOOL,Process32Next,HANDLE, hSnapshot, 64 LPPROCESSENTRY ,lppe)63 LPPROCESSENTRY32,lppe) 65 64 { 66 dprintf(("KERNEL32: Process32Next not implemented.\n"));65 dprintf(("KERNEL32: Process32Next %x %x not implemented", hSnapshot, lppe)); 67 66 SetLastError( ERROR_CALL_NOT_IMPLEMENTED ); 68 67 return FALSE; … … 75 74 */ 76 75 ODINFUNCTION2(BOOL,Module32First,HANDLE,hSnapshot, 77 LP VOID,lpme)76 LPMODULEENTRY32,lpme) 78 77 { 79 // LPMODULEENTY,lpme) 80 dprintf(("KERNEL32: Module32First not implemented.\n")); 78 dprintf(("KERNEL32: Module32First %x %x not implemented", hSnapshot, lpme)); 81 79 SetLastError( ERROR_CALL_NOT_IMPLEMENTED ); 82 80 return FALSE; … … 89 87 */ 90 88 ODINFUNCTION2(BOOL,Module32Next,HANDLE,hSnapshot, 91 LP VOID,lpme)89 LPMODULEENTRY32,lpme) 92 90 { 93 // LPMODULEENTRY,lpme) 94 dprintf(("KERNEL32: Module32Next not implemented.\n")); 91 dprintf(("KERNEL32: Module32Next %x %x not implemented", hSnapshot, lpme)); 95 92 SetLastError( ERROR_CALL_NOT_IMPLEMENTED ); 96 93 return FALSE; 97 94 } 98 95 96 97 BOOL WINAPI Thread32First(HANDLE hSnapshot,LPTHREADENTRY32 lpte) 98 { 99 dprintf(("KERNEL32: Thread32First %x %x not implemented", hSnapshot, lpte)); 100 SetLastError( ERROR_CALL_NOT_IMPLEMENTED ); 101 return FALSE; 102 } 103 104 BOOL WINAPI Thread32Next(HANDLE hSnapshot, LPTHREADENTRY32 lpte) 105 { 106 dprintf(("KERNEL32: Thread32Next %x %x not implemented", hSnapshot, lpte)); 107 SetLastError( ERROR_CALL_NOT_IMPLEMENTED ); 108 return FALSE; 109 }
Note:
See TracChangeset
for help on using the changeset viewer.