Commit 36bb34fd authored by Alexandre Julliard's avatar Alexandre Julliard

fusion: Use nameless unions/structs.

parent 1e008441
...@@ -21,9 +21,6 @@ ...@@ -21,9 +21,6 @@
#include <stdarg.h> #include <stdarg.h>
#define COBJMACROS #define COBJMACROS
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
#include "windef.h" #include "windef.h"
#include "winbase.h" #include "winbase.h"
#include "winuser.h" #include "winuser.h"
...@@ -409,7 +406,7 @@ static HRESULT enumerate_gac(IAssemblyEnumImpl *asmenum, IAssemblyName *pName) ...@@ -409,7 +406,7 @@ static HRESULT enumerate_gac(IAssemblyEnumImpl *asmenum, IAssemblyName *pName)
lstrcpyW(path, buf); lstrcpyW(path, buf);
GetNativeSystemInfo(&info); GetNativeSystemInfo(&info);
if (info.u.s.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64) if (info.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64)
{ {
lstrcpyW(path + size - 1, gac_64); lstrcpyW(path + size - 1, gac_64);
hr = enum_gac_assemblies(&asmenum->assemblies, pName, 0, v40, path); hr = enum_gac_assemblies(&asmenum->assemblies, pName, 0, v40, path);
...@@ -432,7 +429,7 @@ static HRESULT enumerate_gac(IAssemblyEnumImpl *asmenum, IAssemblyName *pName) ...@@ -432,7 +429,7 @@ static HRESULT enumerate_gac(IAssemblyEnumImpl *asmenum, IAssemblyName *pName)
return hr; return hr;
lstrcpyW(path, buf); lstrcpyW(path, buf);
if (info.u.s.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64) if (info.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64)
{ {
lstrcpyW(path + size - 1, gac_64); lstrcpyW(path + size - 1, gac_64);
hr = enum_gac_assemblies(&asmenum->assemblies, pName, 0, NULL, path); hr = enum_gac_assemblies(&asmenum->assemblies, pName, 0, NULL, path);
......
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