Commit 25d25b23 authored by Zhiyi Zhang's avatar Zhiyi Zhang Committed by Alexandre Julliard

msinfo32: Enable visual styles.

parent 76e448bd
MODULE = msinfo32.exe
IMPORTS = shell32 user32
IMPORTS = shell32 user32 comctl32
EXTRADLLFLAGS = -mwindows -municode -mno-cygwin
......
......@@ -16,6 +16,12 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#include <windef.h>
#include <winbase.h>
#include <winuser.h>
#include <commctrl.h>
#include <shlwapi.h>
#include <shellapi.h>
......@@ -29,6 +35,8 @@ int __cdecl wmain(int argc, WCHAR *argv[])
int i;
WCHAR system_info[64];
InitCommonControls();
WINE_FIXME("stub:");
for (i = 0; i < argc; i++)
WINE_FIXME(" %s", wine_dbgstr_w(argv[i]));
......
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity type="win32" name="Wine.Msinfo32" version="0.0.0.0"/>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
</assembly>
......@@ -26,3 +26,6 @@ STRINGTABLE
{
STRING_SYSTEM_INFO, "System Information"
}
/* @makedep: msinfo32.manifest */
1 RT_MANIFEST msinfo32.manifest
......@@ -17,5 +17,6 @@
*/
#include <windef.h>
#include <winuser.h>
#define STRING_SYSTEM_INFO 100
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