Commit 449b9259 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

functions.
parent 7b11e537
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment