mirror of https://github.com/lianthony/NT4.0
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.
17 lines
571 B
17 lines
571 B
|
|
#define SPC_SET_INVALID(q) ((q).HighPart=(LONG)-1)
|
|
#define SPC_SET_NOTREE(q) ((q).HighPart=(LONG)-2)
|
|
#define SPC_SET_HITDISK(q) ((q).HighPart=(LONG)-3)
|
|
|
|
#define SPC_IS_INVALID(q) ((q).HighPart==(LONG)-1)
|
|
#define SPC_IS_NOTREE(q) ((q).HighPart==(LONG)-2)
|
|
#define SPC_IS_HITDISK(q) ((q).HighPart==(LONG)-3)
|
|
|
|
#define SPC_REFRESH(q) (SPC_IS_INVALID(q) || SPC_IS_HITDISK(q))
|
|
|
|
LPTSTR ShortSizeFormatInternal(LPTSTR szBuf, LARGE_INTEGER qw);
|
|
|
|
#define LARGE_INTEGER_NULL(q) ((q).LowPart = 0, (q).HighPart = 0)
|
|
|
|
LARGE_INTEGER TriMultiply(DWORD dw1, DWORD dw2, DWORD dwSmall);
|
|
|