Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
8e71504e
Commit
8e71504e
authored
Feb 06, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
programs: Don't make apps Unicode if they don't use the command line.
parent
7ca85aa9
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
7 deletions
+6
-7
Makefile.in
programs/lodctr/Makefile.in
+1
-1
lodctr_main.c
programs/lodctr/lodctr_main.c
+1
-1
Makefile.in
programs/oleview/Makefile.in
+1
-1
oleview.c
programs/oleview/oleview.c
+1
-2
Makefile.in
programs/unlodctr/Makefile.in
+1
-1
unlodctr_main.c
programs/unlodctr/unlodctr_main.c
+1
-1
No files found.
programs/lodctr/Makefile.in
View file @
8e71504e
...
...
@@ -3,7 +3,7 @@ TOPOBJDIR = ../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
lodctr.exe
APPMODE
=
-mconsole
-municode
APPMODE
=
-mconsole
IMPORTS
=
loadperf kernel32
C_SRCS
=
lodctr_main.c
...
...
programs/lodctr/lodctr_main.c
View file @
8e71504e
...
...
@@ -19,7 +19,7 @@
#include <windows.h>
#include <loadperf.h>
int
wmain
(
int
argc
,
WCHAR
*
argv
[]
)
int
main
(
int
argc
,
char
*
argv
[]
)
{
return
LoadPerfCounterTextStringsW
(
GetCommandLineW
(),
FALSE
);
}
programs/oleview/Makefile.in
View file @
8e71504e
...
...
@@ -3,7 +3,7 @@ TOPOBJDIR = ../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
oleview.exe
APPMODE
=
-mwindows
-municode
APPMODE
=
-mwindows
IMPORTS
=
uuid comdlg32 comctl32 shell32 oleaut32 ole32 user32 advapi32 kernel32
EXTRADEFS
=
-DUNICODE
...
...
programs/oleview/oleview.c
View file @
8e71504e
...
...
@@ -534,8 +534,7 @@ static BOOL InitInstance(HINSTANCE hInst, int nCmdShow)
return
TRUE
;
}
int
APIENTRY
wWinMain
(
HINSTANCE
hInst
,
HINSTANCE
hPrevInst
,
LPWSTR
lpCmdLine
,
int
nCmdShow
)
int
APIENTRY
WinMain
(
HINSTANCE
hInst
,
HINSTANCE
hPrevInst
,
LPSTR
lpCmdLine
,
int
nCmdShow
)
{
MSG
msg
;
HANDLE
hAccelTable
;
...
...
programs/unlodctr/Makefile.in
View file @
8e71504e
...
...
@@ -3,7 +3,7 @@ TOPOBJDIR = ../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
unlodctr.exe
APPMODE
=
-mconsole
-municode
APPMODE
=
-mconsole
IMPORTS
=
loadperf kernel32
C_SRCS
=
unlodctr_main.c
...
...
programs/unlodctr/unlodctr_main.c
View file @
8e71504e
...
...
@@ -19,7 +19,7 @@
#include <windows.h>
#include <loadperf.h>
int
wmain
(
int
argc
,
WCHAR
*
argv
[]
)
int
main
(
int
argc
,
char
*
argv
[]
)
{
return
UnloadPerfCounterTextStringsW
(
GetCommandLineW
(),
FALSE
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment