windows-nt/Source/XPSP1/NT/shell/osshell/accesory/calc/unifunc.h
2020-09-26 16:20:57 +08:00

9 lines
207 B
C

/*** unifunc.h ***/
#define CharSizeOf(x) (sizeof(x) / sizeof(*x))
#define ByteCountOf(x) ((x) * sizeof(TCHAR))
#define ARRAYSIZE(x) (sizeof(x) / sizeof(*x))
TCHAR *UToDecT( UINT value, TCHAR *sz);