I'm trying to get the size of LPTSTR variable and a CONST CHAR variable using the below code but im not able to get the proper size. i'm suppose to get 20 but i'm getting 0 and 4 for cont char variable and LPTSTR variable.
const char *var1 = "\x00\x00\x00\x00"
"\x00\x00\x00\x00"
"\x02\x00\x00\x00"
"\x5B\xE0\x5B\xE0"
"\x00\x00\x00\x00";
LPTSTR var2 = "\x00\x00\x00\x00"
"\x00\x00\x00\x00"
"\x02\x00\x00\x00"
"\x5B\xE0\x5B\xE0"
"\x00\x00\x00\x00";
printf("%d", sizeof(var1)); //this outputs 0
printf("%d", sizeof(var2)); //this outputs 4
i need to get the size of the value to insert it into WINDOWS REGISTRY as BINARY DATA(REG_BINARY) using the following function
lRes = RegSetValueEx(hMykey, "Scancode Map", 0, REG_BINARY, (LPBYTE) var2, sizeof(var2));
