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.
|
|
/********************************************************************/ /** Microsoft Windows **/ /** Copyright(c) Microsoft Corp., 1990-1992 **/ /********************************************************************/ /* :ts=4 */
#ifndef CSC_RECORDMANAGER_WINNT
typedef union UserRegs UserRegs, *pUserRegs, *PUSERREGS; union UserRegs { struct Client_Reg_Struc r; // DWord register layout
struct Client_Word_Reg_Struc w; // Access word registers
struct Client_Byte_Reg_Struc b; // Access byte registers
}; /* UserRegs */
#endif //ifndef CSC_RECORDMANAGER_WINNT
|