Commit f304b2ae authored by Zhiyi Zhang's avatar Zhiyi Zhang Committed by Alexandre Julliard

winevdm: Enable visual styles.

parent 6c6cfb91
MODULE = winevdm.exe
APPMODE = -mwindows
IMPORTS = user32 kernel
IMPORTS = user32 kernel comctl32
C_SRCS = \
winevdm.c
RC_SRCS = winevdm.rc
......@@ -30,6 +30,7 @@
#include "wine/winbase16.h"
#include "winuser.h"
#include "wincon.h"
#include "commctrl.h"
#include "wine/unicode.h"
#include "wine/debug.h"
......@@ -504,6 +505,8 @@ int main( int argc, char *argv[] )
char *cmdline, *appname, **first_arg;
char *p;
InitCommonControls();
if (!argv[1]) usage();
if (!strcmp( argv[1], "--app-name" ))
......
<?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.Winevdm" 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>
/*
* Winevdm resources
*
* Copyright 2021 Zhiyi Zhang for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <windef.h>
#include <winuser.h>
/* @makedep: winevdm.manifest */
1 RT_MANIFEST winevdm.manifest
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