Changeset 241 for trunk/include/helpers/xwpsecty.h
- Timestamp:
- Jan 12, 2003, 10:17:31 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/xwpsecty.h
r240 r241 459 459 460 460 /* 461 *@@ RING0STATUS:461 *@@ XWPSECSTATUS: 462 462 * 463 463 *@@added V1.0.1 (2003-01-10) [umoeller] 464 464 */ 465 465 466 typedef struct _ RING0STATUS466 typedef struct _XWPSECSTATUS 467 467 { 468 468 BOOL fLocalSecurity; // TRUE if XWPSEC32.SYS is active 469 ULONG cGranted, // if so, no. of syscalls where access was granted 469 470 // the following fields are only set if fLocalSecurity is TRUE 471 472 ULONG cbAllocated; // fixed memory currently allocated in ring 0 473 ULONG cAllocations, // no. of allocations made since startup 474 cFrees; // no. of frees made since startup 475 USHORT cLogBufs, // current 64K log buffers in use 476 cMaxLogBufs; // max 64K log buffers that were ever in use 477 ULONG cLogged; // no. of syscalls that were logged 478 ULONG cGranted, // no. of syscalls where access was granted 470 479 cDenied; // ... and denied 471 } RING0STATUS, *PRING0STATUS; 480 } XWPSECSTATUS, *PXWPSECSTATUS; 481 472 482 473 483 /* ****************************************************************** … … 688 698 #define QUECMD_QUERYSTATUS 1 689 699 690 RING0STATUSStatus;700 XWPSECSTATUS Status; 691 701 692 702 #define QUECMD_QUERYLOCALUSER 2 … … 757 767 #define QUECMD_SETUSERDATA 7 758 768 759 struct 760 { 761 XWPSECID uid; 762 CHAR szUserName[XWPSEC_NAMELEN]; // user name 763 CHAR szFullName[XWPSEC_FULLNAMELEN]; // user's clear name 764 } SetUserData; 769 XWPUSERINFO SetUserData; 765 770 766 771 #define QUECMD_DELETEUSER 8
Note:
See TracChangeset
for help on using the changeset viewer.