Ignore:
Timestamp:
Feb 9, 2002, 1:45:14 PM (24 years ago)
Author:
sandervl
Message:

logging updates

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:02 sandervl Exp $ */
     1/* $Id: toolhelp.cpp,v 1.4 2002-02-09 12:45:13 sandervl Exp $ */
    22
    33/*
     
    3333 */
    3434
    35 ODINFUNCTION2(HANDLE,CreateToolhelp32Snapshot,DWORD,dwFlags,
    36                                               DWORD,dwProcess)
     35HANDLE WIN32API CreateToolhelp32Snapshot(DWORD dwFlags, DWORD dwProcess)
    3736{
    3837  dprintf(("KERNEL32: CreateToolhelp32Snapshot %x %x not implemented, dwFlags, dwProcess"));
     
    4746 * Return info about the first process in a toolhelp32 snapshot
    4847 */
    49 ODINFUNCTION2(BOOL,Process32First,HANDLE,        hSnapshot,
    50                                   LPPROCESSENTRY32,lppe)
     48BOOL WIN32API Process32First(HANDLE hSnapshot, LPPROCESSENTRY32 lppe)
    5149{
    5250  dprintf(("KERNEL32: Process32First %x %x not implemented", hSnapshot, lppe));
     
    6058 * Return info about the "next" process in a toolhelp32 snapshot
    6159 */
    62 ODINFUNCTION2(BOOL,Process32Next,HANDLE,        hSnapshot,
    63                                  LPPROCESSENTRY32,lppe)
     60BOOL WIN32API Process32Next(HANDLE hSnapshot, LPPROCESSENTRY32 lppe)
    6461{
    6562  dprintf(("KERNEL32: Process32Next %x %x not implemented", hSnapshot, lppe));
     
    7370 * Return info about the "first" module in a toolhelp32 snapshot
    7471 */
    75 ODINFUNCTION2(BOOL,Module32First,HANDLE,hSnapshot,
    76                                  LPMODULEENTRY32,lpme)
     72BOOL WIN32API Module32First(HANDLE hSnapshot, LPMODULEENTRY32 lpme)
    7773{
    7874  dprintf(("KERNEL32: Module32First %x %x not implemented", hSnapshot, lpme));
     
    8682 * Return info about the "next" module in a toolhelp32 snapshot
    8783 */
    88 ODINFUNCTION2(BOOL,Module32Next,HANDLE,hSnapshot,
    89                                 LPMODULEENTRY32,lpme)
     84BOOL WIN32API Module32Next(HANDLE hSnapshot, LPMODULEENTRY32 lpme)
    9085{
    9186  dprintf(("KERNEL32: Module32Next %x %x not implemented", hSnapshot, lpme));
Note: See TracChangeset for help on using the changeset viewer.