// Expected result:
// compilation without error
//
// Received result:
// 1.c:11: warning: pasting "L" and ""SeCreateTokenPrivilege"" does not give
a valid preprocessing token
// 1.c:11: 'L' undeclared
//
#define UNICODE
#include <windows.h>
void* p = SE_CREATE_TOKEN_NAME;
/*
the same without windows.h:
#define TEXT(q) L##q
#define HELLO TEXT("Hello")
void* p = HELLO;
*/
_______________________________________________
Tinycc-devel mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/tinycc-devel