mshtml: Write-strings warnings fix.

This commit is contained in:
Andrew Talbot 2006-07-12 21:26:49 +01:00 committed by Alexandre Julliard
parent e2bf4ff164
commit f7e38ac6ea
1 changed files with 11 additions and 5 deletions

View File

@ -253,8 +253,13 @@ DEFINE_GUID(CLSID_Scriptlet, 0xAE24FDAE, 0x03C6, 0x11D1, 0x8B,0x76, 0x00,0x80,0x
DEFINE_GUID(CLSID_TridentAPI, 0x429AF92C, 0xA51F, 0x11D2, 0x86,0x1E, 0x00,0xC0,0x4F,0xA3,0x5C,0x89);
#define INF_SET_ID(id) \
pse[i].pszName = #id; \
clsids[i++] = &id;
do \
{ \
static CHAR name[] = #id; \
\
pse[i].pszName = name; \
clsids[i++] = &id; \
} while (0)
#define INF_SET_CLSID(clsid) INF_SET_ID(CLSID_ ## clsid)
@ -331,6 +336,7 @@ static HRESULT register_server(BOOL do_register)
}
#undef INF_SET_CLSID
#undef INF_SET_ID
/***********************************************************************
* DllRegisterServer (MSHTML.@)