Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
649 B

  1. /********************************************************************/
  2. /** Microsoft Windows **/
  3. /** Copyright(c) Microsoft Corp., 1990-1992 **/
  4. /********************************************************************/
  5. /* :ts=4 */
  6. #ifndef CSC_RECORDMANAGER_WINNT
  7. typedef union UserRegs UserRegs, *pUserRegs, *PUSERREGS;
  8. union UserRegs {
  9. struct Client_Reg_Struc r; // DWord register layout
  10. struct Client_Word_Reg_Struc w; // Access word registers
  11. struct Client_Byte_Reg_Struc b; // Access byte registers
  12. }; /* UserRegs */
  13. #endif //ifndef CSC_RECORDMANAGER_WINNT
  14.