2025-04-27 07:49:33 -04:00

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);