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
98f02023
Commit
98f02023
authored
Mar 26, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use aliases instead of #defines for the varargs functions when using
gcc.
parent
1c7afd87
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
40 additions
and
13 deletions
+40
-13
conio.h
include/msvcrt/conio.h
+9
-2
io.h
include/msvcrt/io.h
+9
-2
process.h
include/msvcrt/process.h
+21
-8
stdio.h
include/msvcrt/stdio.h
+1
-1
No files found.
include/msvcrt/conio.h
View file @
98f02023
...
...
@@ -40,9 +40,7 @@ unsigned short _outpw(unsigned short, unsigned short);
#ifndef USE_MSVCRT_PREFIX
static
inline
char
*
cgets
(
char
*
str
)
{
return
_cgets
(
str
);
}
#define cprintf _cprintf
static
inline
int
cputs
(
const
char
*
str
)
{
return
_cputs
(
str
);
}
#define cscanf _cscanf
static
inline
int
getch
(
void
)
{
return
_getch
();
}
static
inline
int
getche
(
void
)
{
return
_getche
();
}
static
inline
int
kbhit
(
void
)
{
return
_kbhit
();
}
...
...
@@ -54,6 +52,15 @@ static inline unsigned short inpw(unsigned short i) { return _inpw(i); }
static
inline
int
outp
(
unsigned
short
i
,
int
j
)
{
return
_outp
(
i
,
j
);
}
static
inline
unsigned
short
outpw
(
unsigned
short
i
,
unsigned
short
j
)
{
return
_outpw
(
i
,
j
);
}
#endif
#ifdef __GNUC__
extern
int
cprintf
(
const
char
*
,...)
__attribute__
((
alias
(
"_cprintf"
),
format
(
printf
,
1
,
2
)));
extern
int
cscanf
(
const
char
*
,...)
__attribute__
((
alias
(
"_cscanf"
),
format
(
scanf
,
1
,
2
)));
#else
#define cprintf _cprintf
#define cscanf _cscanf
#endif
/* __GNUC__ */
#endif
/* USE_MSVCRT_PREFIX */
#endif
/* __WINE_CONIO_H */
include/msvcrt/io.h
View file @
98f02023
...
...
@@ -169,10 +169,8 @@ static inline int isatty(int fd) { return _isatty(fd); }
static
inline
int
locking
(
int
fd
,
int
mode
,
long
size
)
{
return
_locking
(
fd
,
mode
,
size
);
}
static
inline
long
lseek
(
int
fd
,
long
off
,
int
where
)
{
return
_lseek
(
fd
,
off
,
where
);
}
static
inline
char
*
mktemp
(
char
*
pat
)
{
return
_mktemp
(
pat
);
}
#define open _open
static
inline
int
read
(
int
fd
,
void
*
buf
,
unsigned
int
size
)
{
return
_read
(
fd
,
buf
,
size
);
}
static
inline
int
setmode
(
int
fd
,
int
mode
)
{
return
_setmode
(
fd
,
mode
);
}
#define sopen _sopen
static
inline
long
tell
(
int
fd
)
{
return
_tell
(
fd
);
}
#ifndef MSVCRT_UMASK_DEFINED
static
inline
int
umask
(
int
fd
)
{
return
_umask
(
fd
);
}
...
...
@@ -183,6 +181,15 @@ static inline int unlink(const char* path) { return _unlink(path); }
#define MSVCRT_UNLINK_DEFINED
#endif
static
inline
int
write
(
int
fd
,
const
void
*
buf
,
unsigned
int
size
)
{
return
_write
(
fd
,
buf
,
size
);
}
#ifdef __GNUC__
extern
int
open
(
const
char
*
,
int
,...)
__attribute__
((
alias
(
"_open"
)));
extern
int
sopen
(
const
char
*
,
int
,
int
,...)
__attribute__
((
alias
(
"_sopen"
)));
#else
#define open _open
#define sopen _sopen
#endif
/* __GNUC__ */
#endif
/* USE _MSVCRT_PREFIX */
#endif
/* __WINE_IO_H */
include/msvcrt/process.h
View file @
98f02023
...
...
@@ -123,22 +123,35 @@ int _wsystem(const MSVCRT(wchar_t)*);
static
inline
int
cwait
(
int
*
status
,
int
pid
,
int
action
)
{
return
_cwait
(
status
,
pid
,
action
);
}
static
inline
int
getpid
(
void
)
{
return
_getpid
();
}
#define execl _execl
#define execle _execle
#define execlp _execlp
#define execlpe _execlpe
static
inline
int
execv
(
const
char
*
name
,
char
*
const
*
argv
)
{
return
_execv
(
name
,
argv
);
}
static
inline
int
execve
(
const
char
*
name
,
char
*
const
*
argv
,
const
char
*
const
*
envv
)
{
return
_execve
(
name
,
argv
,
envv
);
}
static
inline
int
execvp
(
const
char
*
name
,
char
*
const
*
argv
)
{
return
_execvp
(
name
,
argv
);
}
static
inline
int
execvpe
(
const
char
*
name
,
char
*
const
*
argv
,
const
char
*
const
*
envv
)
{
return
_execvpe
(
name
,
argv
,
envv
);
}
#define spawnl _spawnl
#define spawnle _spawnle
#define spawnlp _spawnlp
#define spawnlpe _spawnlpe
static
inline
int
spawnv
(
int
flags
,
const
char
*
name
,
const
char
*
const
*
argv
)
{
return
_spawnv
(
flags
,
name
,
argv
);
}
static
inline
int
spawnve
(
int
flags
,
const
char
*
name
,
const
char
*
const
*
argv
,
const
char
*
const
*
envv
)
{
return
_spawnve
(
flags
,
name
,
argv
,
envv
);
}
static
inline
int
spawnvp
(
int
flags
,
const
char
*
name
,
const
char
*
const
*
argv
)
{
return
_spawnvp
(
flags
,
name
,
argv
);
}
static
inline
int
spawnvpe
(
int
flags
,
const
char
*
name
,
const
char
*
const
*
argv
,
const
char
*
const
*
envv
)
{
return
_spawnvpe
(
flags
,
name
,
argv
,
envv
);
}
#ifdef __GNUC__
extern
int
execl
(
const
char
*
,
const
char
*
,...)
__attribute__
((
alias
(
"_execl"
)));
extern
int
execle
(
const
char
*
,
const
char
*
,...)
__attribute__
((
alias
(
"_execle"
)));
extern
int
execlp
(
const
char
*
,
const
char
*
,...)
__attribute__
((
alias
(
"_execlp"
)));
extern
int
execlpe
(
const
char
*
,
const
char
*
,...)
__attribute__
((
alias
(
"_execlpe"
)));
extern
int
spawnl
(
int
,
const
char
*
,
const
char
*
,...)
__attribute__
((
alias
(
"_spawnl"
)));
extern
int
spawnle
(
int
,
const
char
*
,
const
char
*
,...)
__attribute__
((
alias
(
"_spawnle"
)));
extern
int
spawnlp
(
int
,
const
char
*
,
const
char
*
,...)
__attribute__
((
alias
(
"_spawnlp"
)));
extern
int
spawnlpe
(
int
,
const
char
*
,
const
char
*
,...)
__attribute__
((
alias
(
"_spawnlpe"
)));
#else
#define execl _execl
#define execle _execle
#define execlp _execlp
#define execlpe _execlpe
#define spawnl _spawnl
#define spawnle _spawnle
#define spawnlp _spawnlp
#define spawnlpe _spawnlpe
#endif
/* __GNUC__ */
#endif
/* USE_MSVCRT_PREFIX */
#endif
/* __WINE_PROCESS_H */
include/msvcrt/stdio.h
View file @
98f02023
...
...
@@ -272,7 +272,7 @@ static inline MSVCRT(wint_t) fgetwchar(void) { return _fgetwchar(); }
static
inline
MSVCRT
(
wint_t
)
fputwchar
(
MSVCRT
(
wint_t
)
wc
)
{
return
_fputwchar
(
wc
);
}
static
inline
int
getw
(
MSVCRT
(
FILE
)
*
file
)
{
return
_getw
(
file
);
}
static
inline
int
putw
(
int
val
,
MSVCRT
(
FILE
)
*
file
)
{
return
_putw
(
val
,
file
);
}
#define wpopen _wpopen
static
inline
MSVCRT
(
FILE
)
*
wpopen
(
const
MSVCRT
(
wchar_t
)
*
command
,
const
MSVCRT
(
wchar_t
)
*
mode
)
{
return
_wpopen
(
command
,
mode
);
}
#endif
/* USE_MSVCRT_PREFIX */
#endif
/* __WINE_STDIO_H */
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