MSVC does not want 'extern' variables to be initialized inside

functions.
This commit is contained in:
Francois Gouget 2004-01-16 02:02:03 +00:00 committed by Alexandre Julliard
parent 7b11e537b0
commit 449b92595a
1 changed files with 3 additions and 2 deletions

View File

@ -96,10 +96,11 @@ const GUID * TEST_guids[] = {
NULL
};
DEFINE_GUID(IID_Endianess, 0x01020304, 0x0506, 0x0708, 0x09, 0x0A, 0x0B,
0x0C, 0x0D, 0x0E, 0x0F, 0x0A);
static void test_ClassIDs(void)
{
DEFINE_GUID(IID_Endianess, 0x01020304, 0x0506, 0x0708, 0x09, 0x0A, 0x0B,
0x0C, 0x0D, 0x0E, 0x0F, 0x0A);
const GUID **guids = TEST_guids;
char szBuff[256];
GUID guid;