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
a56de4c3
Commit
a56de4c3
authored
Nov 08, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add some missing CDECLs.
parent
b0c3dc35
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
environ.c
dlls/msvcrt/environ.c
+6
-6
No files found.
dlls/msvcrt/environ.c
View file @
a56de4c3
...
...
@@ -216,7 +216,7 @@ int CDECL _wputenv_s(const MSVCRT_wchar_t *name, const MSVCRT_wchar_t *value)
/******************************************************************
* _dupenv_s (MSVCRT.@)
*/
int
_dupenv_s
(
char
**
buffer
,
MSVCRT_size_t
*
numberOfElements
,
const
char
*
varname
)
int
CDECL
_dupenv_s
(
char
**
buffer
,
MSVCRT_size_t
*
numberOfElements
,
const
char
*
varname
)
{
char
*
e
;
MSVCRT_size_t
sz
;
...
...
@@ -240,8 +240,8 @@ int _dupenv_s(char **buffer, MSVCRT_size_t *numberOfElements, const char *varnam
/******************************************************************
* _wdupenv_s (MSVCRT.@)
*/
int
_wdupenv_s
(
MSVCRT_wchar_t
**
buffer
,
MSVCRT_size_t
*
numberOfElements
,
const
MSVCRT_wchar_t
*
varname
)
int
CDECL
_wdupenv_s
(
MSVCRT_wchar_t
**
buffer
,
MSVCRT_size_t
*
numberOfElements
,
const
MSVCRT_wchar_t
*
varname
)
{
MSVCRT_wchar_t
*
e
;
MSVCRT_size_t
sz
;
...
...
@@ -265,7 +265,7 @@ int _wdupenv_s(MSVCRT_wchar_t **buffer, MSVCRT_size_t *numberOfElements,
/******************************************************************
* getenv_s (MSVCRT.@)
*/
int
getenv_s
(
MSVCRT_size_t
*
pReturnValue
,
char
*
buffer
,
MSVCRT_size_t
numberOfElements
,
const
char
*
varname
)
int
CDECL
getenv_s
(
MSVCRT_size_t
*
pReturnValue
,
char
*
buffer
,
MSVCRT_size_t
numberOfElements
,
const
char
*
varname
)
{
char
*
e
;
...
...
@@ -292,8 +292,8 @@ int getenv_s(MSVCRT_size_t *pReturnValue, char* buffer, MSVCRT_size_t numberOfEl
/******************************************************************
* _wgetenv_s (MSVCRT.@)
*/
int
_wgetenv_s
(
MSVCRT_size_t
*
pReturnValue
,
MSVCRT_wchar_t
*
buffer
,
MSVCRT_size_t
numberOfElements
,
const
MSVCRT_wchar_t
*
varname
)
int
CDECL
_wgetenv_s
(
MSVCRT_size_t
*
pReturnValue
,
MSVCRT_wchar_t
*
buffer
,
MSVCRT_size_t
numberOfElements
,
const
MSVCRT_wchar_t
*
varname
)
{
MSVCRT_wchar_t
*
e
;
...
...
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