atl: Make constants 'AtlAxWinW' and 'AtlAxWinLicW' static.
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
3f2a2c0591
commit
ef7855e131
|
@ -104,7 +104,7 @@ BOOL WINAPI AtlAxWinInit(void)
|
||||||
#error Unsupported version
|
#error Unsupported version
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const WCHAR AtlAxWinW[] = {'A','t','l','A','x','W','i','n',ATL_NAME_SUFFIX};
|
static const WCHAR AtlAxWinW[] = {'A','t','l','A','x','W','i','n',ATL_NAME_SUFFIX};
|
||||||
|
|
||||||
FIXME("version %04x semi-stub\n", _ATL_VER);
|
FIXME("version %04x semi-stub\n", _ATL_VER);
|
||||||
|
|
||||||
|
@ -128,7 +128,7 @@ BOOL WINAPI AtlAxWinInit(void)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
if(_ATL_VER > _ATL_VER_30) {
|
if(_ATL_VER > _ATL_VER_30) {
|
||||||
const WCHAR AtlAxWinLicW[] = {'A','t','l','A','x','W','i','n','L','i','c',ATL_NAME_SUFFIX};
|
static const WCHAR AtlAxWinLicW[] = {'A','t','l','A','x','W','i','n','L','i','c',ATL_NAME_SUFFIX};
|
||||||
|
|
||||||
wcex.lpszClassName = AtlAxWinLicW;
|
wcex.lpszClassName = AtlAxWinLicW;
|
||||||
if ( !RegisterClassExW( &wcex ) )
|
if ( !RegisterClassExW( &wcex ) )
|
||||||
|
|
Loading…
Reference in New Issue