Ignore:
Timestamp:
Mar 16, 2000, 8:16:38 PM (25 years ago)
Author:
sandervl
Message:

header updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/HandleManager.h

    r2326 r3124  
    1 /* $Id: HandleManager.h,v 1.16 2000-01-05 19:35:52 sandervl Exp $ */
     1/* $Id: HandleManager.h,v 1.17 2000-03-16 19:16:34 sandervl Exp $ */
    22
    33/*
     
    132132
    133133DWORD  HMHandleAllocate       (PULONG phHandle16,
    134                                        ULONG  hHandle32);
     134                               ULONG  hHandle32);
    135135
    136136DWORD  HMHandleFree           (ULONG  hHandle16);
     
    141141
    142142DWORD  HMHandleTranslateToWin (ULONG  hHandle32,
    143                                        PULONG phHandle16);
     143                               PULONG phHandle16);
    144144
    145145DWORD  HMHandleTranslateToOS2 (ULONG  hHandle16,
    146                                        PULONG hHandle32);
     146                               PULONG hHandle32);
    147147
    148148DWORD  HMHandleTranslateToOS2i(ULONG  hHandle16);
     
    349349BOOL HMGetCommState(INT hCommDev, LPDCB lpdcb);
    350350
     351HANDLE HMCreateThread(LPSECURITY_ATTRIBUTES  lpsa,
     352                      DWORD                  cbStack,
     353                      LPTHREAD_START_ROUTINE lpStartAddr,
     354                      LPVOID                 lpvThreadParm,
     355                      DWORD                  fdwCreate,
     356                      LPDWORD                lpIDThread);
     357INT    HMGetThreadPriority(HANDLE hThread);
     358DWORD  HMSuspendThread(HANDLE hThread);
     359BOOL   HMSetThreadPriority(HANDLE hThread, int priority);
     360BOOL   HMGetThreadContext(HANDLE hThread, CONTEXT *lpContext);
     361BOOL   HMSetThreadContext(HANDLE hThread, const CONTEXT *lpContext);
     362BOOL   HMTerminateThread(HANDLE hThread, DWORD exitcode);
     363DWORD  HMResumeThread(HANDLE hThread);
     364BOOL   HMGetExitCodeThread(HANDLE hThread, LPDWORD lpExitCode);
     365BOOL   HMSetThreadTerminated(HANDLE hThread);
     366
    351367#ifdef __cplusplus__
    352368  }
Note: See TracChangeset for help on using the changeset viewer.