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
d81ce0fc
Commit
d81ce0fc
authored
Apr 10, 2001
by
Francois Gouget
Committed by
Alexandre Julliard
Apr 10, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the signature of __GetMainArgs and __getmainargs (from msvcrt).
parent
e7f75c5d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
crtdll_main.c
dlls/crtdll/crtdll_main.c
+4
-4
No files found.
dlls/crtdll/crtdll_main.c
View file @
d81ce0fc
...
...
@@ -11,8 +11,8 @@
DEFAULT_DEBUG_CHANNEL
(
crtdll
);
/* from msvcrt */
extern
void
__
cdecl
__getmainargs
(
int
*
argc
,
char
***
argv
,
char
**
environ
,
int
expand_wildcards
,
int
*
new_mode
);
extern
void
__
getmainargs
(
int
*
argc
,
char
***
argv
,
char
***
envp
,
int
expand_wildcards
,
int
*
new_mode
);
/* The following data items are not exported from msvcrt */
unsigned
int
CRTDLL__basemajor_dll
;
...
...
@@ -50,8 +50,8 @@ BOOL WINAPI CRTDLL_Init(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved)
/*********************************************************************
* __GetMainArgs (CRTDLL.@)
*/
void
__
cdecl
__GetMainArgs
(
int
*
argc
,
char
***
argv
,
char
**
environ
,
int
expand_wildcards
)
void
__
GetMainArgs
(
int
*
argc
,
char
***
argv
,
char
***
envp
,
int
expand_wildcards
)
{
int
new_mode
=
0
;
__getmainargs
(
argc
,
argv
,
env
iron
,
expand_wildcards
,
&
new_mode
);
__getmainargs
(
argc
,
argv
,
env
p
,
expand_wildcards
,
&
new_mode
);
}
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