Changeset 7849 for trunk/src/kernel32/toolhelp.cpp
- Timestamp:
- Feb 9, 2002, 1:45:14 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/toolhelp.cpp
r4451 r7849 1 /* $Id: toolhelp.cpp,v 1. 3 2000-10-08 14:01:02sandervl Exp $ */1 /* $Id: toolhelp.cpp,v 1.4 2002-02-09 12:45:13 sandervl Exp $ */ 2 2 3 3 /* … … 33 33 */ 34 34 35 ODINFUNCTION2(HANDLE,CreateToolhelp32Snapshot,DWORD,dwFlags, 36 DWORD,dwProcess) 35 HANDLE WIN32API CreateToolhelp32Snapshot(DWORD dwFlags, DWORD dwProcess) 37 36 { 38 37 dprintf(("KERNEL32: CreateToolhelp32Snapshot %x %x not implemented, dwFlags, dwProcess")); … … 47 46 * Return info about the first process in a toolhelp32 snapshot 48 47 */ 49 ODINFUNCTION2(BOOL,Process32First,HANDLE, hSnapshot, 50 LPPROCESSENTRY32,lppe) 48 BOOL WIN32API Process32First(HANDLE hSnapshot, LPPROCESSENTRY32 lppe) 51 49 { 52 50 dprintf(("KERNEL32: Process32First %x %x not implemented", hSnapshot, lppe)); … … 60 58 * Return info about the "next" process in a toolhelp32 snapshot 61 59 */ 62 ODINFUNCTION2(BOOL,Process32Next,HANDLE, hSnapshot, 63 LPPROCESSENTRY32,lppe) 60 BOOL WIN32API Process32Next(HANDLE hSnapshot, LPPROCESSENTRY32 lppe) 64 61 { 65 62 dprintf(("KERNEL32: Process32Next %x %x not implemented", hSnapshot, lppe)); … … 73 70 * Return info about the "first" module in a toolhelp32 snapshot 74 71 */ 75 ODINFUNCTION2(BOOL,Module32First,HANDLE,hSnapshot, 76 LPMODULEENTRY32,lpme) 72 BOOL WIN32API Module32First(HANDLE hSnapshot, LPMODULEENTRY32 lpme) 77 73 { 78 74 dprintf(("KERNEL32: Module32First %x %x not implemented", hSnapshot, lpme)); … … 86 82 * Return info about the "next" module in a toolhelp32 snapshot 87 83 */ 88 ODINFUNCTION2(BOOL,Module32Next,HANDLE,hSnapshot, 89 LPMODULEENTRY32,lpme) 84 BOOL WIN32API Module32Next(HANDLE hSnapshot, LPMODULEENTRY32 lpme) 90 85 { 91 86 dprintf(("KERNEL32: Module32Next %x %x not implemented", hSnapshot, lpme));
Note:
See TracChangeset
for help on using the changeset viewer.