Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
2a648023
Commit
2a648023
authored
Jan 05, 2001
by
François Gouget
Committed by
Alexandre Julliard
Jan 05, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
The first 2 parameters of WinMain are HINSTANCEs, not HANDLEs.
parent
11dbda6b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
aviinfo.c
programs/avitools/aviinfo.c
+1
-1
aviplay.c
programs/avitools/aviplay.c
+1
-1
icinfo.c
programs/avitools/icinfo.c
+1
-1
No files found.
programs/avitools/aviinfo.c
View file @
2a648023
...
...
@@ -7,7 +7,7 @@
#include "vfw.h"
int
PASCAL
WinMain
(
HANDLE
hInstance
,
HANDL
E
prev
,
LPSTR
cmdline
,
int
show
)
int
PASCAL
WinMain
(
HINSTANCE
hInstance
,
HINSTANC
E
prev
,
LPSTR
cmdline
,
int
show
)
{
int
n
;
HRESULT
hres
;
...
...
programs/avitools/aviplay.c
View file @
2a648023
...
...
@@ -28,7 +28,7 @@
#include "vfw.h"
int
PASCAL
WinMain
(
HANDLE
hInstance
,
HANDL
E
prev
,
LPSTR
cmdline
,
int
show
)
int
PASCAL
WinMain
(
HINSTANCE
hInstance
,
HINSTANC
E
prev
,
LPSTR
cmdline
,
int
show
)
{
int
bytesline
,
i
,
n
,
pos
;
time_t
tstart
,
tend
;
...
...
programs/avitools/icinfo.c
View file @
2a648023
...
...
@@ -5,7 +5,7 @@
#include "vfw.h"
int
PASCAL
WinMain
(
HANDLE
hInstance
,
HANDL
E
prev
,
LPSTR
cmdline
,
int
show
)
int
PASCAL
WinMain
(
HINSTANCE
hInstance
,
HINSTANC
E
prev
,
LPSTR
cmdline
,
int
show
)
{
int
n
=
0
,
doabout
=
0
,
doconfigure
=
0
;
char
buf
[
128
],
type
[
5
],
handler
[
5
];
...
...
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