Hi all,
Does anyone know how should ASF_OBJECT_GUID_TEST
be defined to avoid compilation error in the line marked below, or where I can find more information about it?
Thanks,
Andre
#define ASF_OBJECT_GUID_TEST {(char)0x75, (char)0xB2, (char)0x00}
void testFunction(char * testChar)
{
}
int main(int argc, char * argv[])
{
char test[] = ASF_OBJECT_GUID_TEST;
testFunction(test);
testFunction(ASF_OBJECT_GUID_TEST); // <- fails to compile this line of code
return 0;
}