windows-nt/Source/XPSP1/NT/shell/osshell/accesory/calc/unifunc.h

9 lines
207 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*** 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);