Changeset 44 for trunk/include
- Timestamp:
- Mar 8, 2001, 8:28:45 PM (24 years ago)
- Location:
- trunk/include/helpers
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/procstat.h
r41 r44 658 658 ********************************************************************/ 659 659 660 BOOL prc16QueryProcessInfo( USHORT usPID, PPRCPROCESS pprcp);660 BOOL prc16QueryProcessInfo(PQPROCSTAT16 pps, USHORT usPID, PPRCPROCESS pprcp); 661 661 662 662 ULONG prc16ForEachProcess(PFNWP pfnwpCallback, HWND hwnd, ULONG ulMsg, MPARAM mp1); 663 663 664 ULONG prc16QueryThreadCount( USHORT usPID);665 666 BOOL prc16QueryThreadInfo( USHORT usPID, USHORT usTID, PPRCTHREAD pprct);667 668 ULONG prc16QueryThreadPriority( USHORT usPID, USHORT usTID);664 ULONG prc16QueryThreadCount(PQPROCSTAT16 pps, USHORT usPID); 665 666 BOOL prc16QueryThreadInfo(PQPROCSTAT16 pps, USHORT usPID, USHORT usTID, PPRCTHREAD pprct); 667 668 ULONG prc16QueryThreadPriority(PQPROCSTAT16 pps, USHORT usPID, USHORT usTID); 669 669 670 670 /******************************************************************** -
trunk/include/helpers/threads.h
r41 r44 47 47 void* pThreadFunc; // as passed to thrCreate, really a PTHREADFUNC 48 48 PBOOL pfRunning; // as passed to thrCreate 49 const char *pcszThreadName; // as passed to thrCreate 49 50 ULONG flFlags; // as passed to thrCreate 50 51 ULONG ulData; // as passed to thrCreate … … 71 72 PTHREADFUNC pfn, 72 73 PBOOL pfRunning, 74 const char *pcszThreadName, 73 75 ULONG flFlags, 74 76 ULONG ulData); … … 76 78 ULONG thrRunSync(HAB hab, 77 79 PTHREADFUNC pfn, 80 const char *pcszThreadName, 78 81 ULONG ulData); 82 83 PTHREADINFO thrListThreads(PULONG pcThreads); 84 85 BOOL thrFindThread(PTHREADINFO pti, 86 ULONG tid); 79 87 80 88 BOOL thrClose(PTHREADINFO pti); -
trunk/include/helpers/timer.h
r41 r44 43 43 USHORT idPMTimer; // ID of main PM timer 44 44 USHORT idPMTimerRunning; // if != 0, PM timer is running 45 ULONG ulPMTimeout; // current PM timeout; if 0, recalculation 46 // is needed. 45 47 PVOID pvllXTimers; // linked list of current XTIMER structures, auto-free 46 48 } XTIMERSET, *PXTIMERSET;
Note:
See TracChangeset
for help on using the changeset viewer.