Windows-Server-2003/shell/osshell/accesory/calc/unifunc.h

9 lines
215 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);