Ignore:
Timestamp:
Oct 8, 2000, 4:01:02 PM (25 years ago)
Author:
sandervl
Message:

extra logging + toolhelp apis not exported anymore

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 $ */
    22
    33/*
     
    2323#include "winerror.h"
    2424#include "tlhelp32.h"
    25 #include "toolhelp.h"
    2625
    2726#define DBG_LOCALLOG    DBG_toolhelp
     
    3736                                              DWORD,dwProcess)
    3837{
    39   dprintf(("KERNEL32: CreateToolhelp32Snapshot not implemented.\n"));
     38  dprintf(("KERNEL32: CreateToolhelp32Snapshot %x %x not implemented, dwFlags, dwProcess"));
    4039  SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
    4140  return INVALID_HANDLE_VALUE;
     
    4948 */
    5049ODINFUNCTION2(BOOL,Process32First,HANDLE,        hSnapshot,
    51                                   LPPROCESSENTRY,lppe)
     50                                  LPPROCESSENTRY32,lppe)
    5251{
    53   dprintf(("KERNEL32: Process32First not implemented.\n"));
     52  dprintf(("KERNEL32: Process32First %x %x not implemented", hSnapshot, lppe));
    5453  SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
    5554  return FALSE;
     
    6261 */
    6362ODINFUNCTION2(BOOL,Process32Next,HANDLE,        hSnapshot,
    64                                  LPPROCESSENTRY,lppe)
     63                                 LPPROCESSENTRY32,lppe)
    6564{
    66   dprintf(("KERNEL32: Process32Next not implemented.\n"));
     65  dprintf(("KERNEL32: Process32Next %x %x not implemented", hSnapshot, lppe));
    6766  SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
    6867  return FALSE;
     
    7574 */
    7675ODINFUNCTION2(BOOL,Module32First,HANDLE,hSnapshot,
    77                                  LPVOID,lpme)
     76                                 LPMODULEENTRY32,lpme)
    7877{
    79   //                               LPMODULEENTY,lpme)
    80   dprintf(("KERNEL32: Module32First not implemented.\n"));
     78  dprintf(("KERNEL32: Module32First %x %x not implemented", hSnapshot, lpme));
    8179  SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
    8280  return FALSE;
     
    8987 */
    9088ODINFUNCTION2(BOOL,Module32Next,HANDLE,hSnapshot,
    91                                 LPVOID,lpme)
     89                                LPMODULEENTRY32,lpme)
    9290{
    93   //                              LPMODULEENTRY,lpme)
    94   dprintf(("KERNEL32: Module32Next not implemented.\n"));
     91  dprintf(("KERNEL32: Module32Next %x %x not implemented", hSnapshot, lpme));
    9592  SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
    9693  return FALSE;
    9794}
    9895
     96
     97BOOL 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
     104BOOL 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.