home *** CD-ROM | disk | FTP | other *** search
- /* running.h
- **
- ** Copyright (c) 1989, Christopher Laforet
- ** All Rights Reserved
- **
- ** Started: 25 October 1989
- **
- ** Revision Information:
- **
- ** $Logfile: D:/os2/running/vcs/running.h_v $
- ** $Date: 25 Oct 1989 21:28:46 $
- ** $Revision: 1.2 $
- **
- */
-
-
- #define MAJOR_VERSION 1
- #define MINOR_VERSION 2
-
-
- struct id
- {
- USHORT pid;
- USHORT ppid;
- USHORT threads;
- USHORT signiture;
- };
-
-
- struct proc
- {
- USHORT pid;
- USHORT ppid;
- USHORT signiture;
- USHORT max_dependents;
- USHORT threads;
- USHORT children;
- USHORT *dependents;
- UCHAR *process;
- };
-
-
- extern USHORT APIENTRY DosQProcStatus(PVOID pBuf,USHORT cbBuf);
-