Commit 6c6cfb91 authored by Zhiyi Zhang's avatar Zhiyi Zhang Committed by Alexandre Julliard

winemine: Enable visual styles.

parent 7abfec44
MODULE = winemine.exe
IMPORTS = user32 gdi32 advapi32
IMPORTS = user32 gdi32 advapi32 comctl32
DELAYIMPORTS = shell32
EXTRADLLFLAGS = -mwindows -municode -mno-cygwin
......
......@@ -23,6 +23,7 @@
#include <string.h>
#include <time.h>
#include <windows.h>
#include <commctrl.h>
#include <stdlib.h>
#include <shellapi.h>
#include "main.h"
......@@ -1012,6 +1013,8 @@ int WINAPI wWinMain( HINSTANCE hInst, HINSTANCE hPrevInst, LPWSTR cmdline, int c
HACCEL haccel;
WCHAR appname[20];
InitCommonControls();
LoadStringW( hInst, IDS_APPNAME, appname, ARRAY_SIZE(appname));
wc.cbSize = sizeof(wc);
......
<?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.Winemine" 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>
......@@ -105,6 +105,9 @@ IDA_WINEMINE ACCELERATORS
LANGUAGE LANG_NEUTRAL,SUBLANG_NEUTRAL
/* @makedep: winemine.manifest */
1 RT_MANIFEST winemine.manifest
/* @makedep: winemine.ico */
IDI_WINEMINE ICON winemine.ico
......
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