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.
 
 
 
 
 
 

75 lines
1.5 KiB

/*++
Copyright (c) 1998-1999, Microsoft Corporation
Module Name:
digpid.h
Abstract:
--*/
// DigPid.h
#ifdef __cplusplus
extern "C" {
#endif
#define INVALID_PID 0xFFFFFFFF
typedef enum {
ltFPP,
ltCCP,
ltOEM,
ltSelect,
ltMLP,
ltMOLP,
ltMSDN
} LICENSETYPE;
typedef DWORD DWLICENSETYPE;
// Note: be careful not to alter this definition (or at least it's definition).
// When more fields are needed, create a DIGITALPID2 or similar. Too much external
// code depends on this header to change it.
typedef struct {
DWORD dwLength;
WORD wVersionMajor;
WORD wVersionMinor;
char szPid2[24];
DWORD dwKeyIdx;
char szSku[16];
BYTE abCdKey[16];
DWORD dwCloneStatus;
DWORD dwTime;
DWORD dwRandom;
DWLICENSETYPE dwlt;
DWORD adwLicenseData[2];
char szOemId[8];
DWORD dwBundleId;
char aszHardwareIdStatic[8];
DWORD dwHardwareIdTypeStatic;
DWORD dwBiosChecksumStatic;
DWORD dwVolSerStatic;
DWORD dwTotalRamStatic;
DWORD dwVideoBiosChecksumStatic;
char aszHardwareIdDynamic[8];
DWORD dwHardwareIdTypeDynamic;
DWORD dwBiosChecksumDynamic;
DWORD dwVolSerDynamic;
DWORD dwTotalRamDynamic;
DWORD dwVideoBiosChecksumDynamic;
DWORD dwCrc32;
} DIGITALPID, *PDIGITALPID, FAR *LPDIGITALPID;
#ifdef __cplusplus
} /* End of extern "C" { */
#endif /* __cplusplus */