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
33c069ae
Commit
33c069ae
authored
Sep 23, 2003
by
Jon Griffiths
Committed by
Alexandre Julliard
Sep 23, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some needed config.h entries.
parent
d051a95b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
msvcmaker
tools/winapi/msvcmaker
+12
-2
No files found.
tools/winapi/msvcmaker
View file @
33c069ae
...
...
@@ -1240,7 +1240,7 @@ sub _generate_config_h {
print
OUT
"#define __WINE_CONFIG_H\n"
;
print
OUT
"\n"
;
my
@headers
=
qw(direct.h
io
.h)
;
my
@headers
=
qw(direct.h
fcntl.h io.h string.h process
.h)
;
foreach
my
$header
(
@headers
)
{
$header
=~
y
/\.\//
__
/
;
print
OUT
"#define HAVE_\U$header\E\n"
;
...
...
@@ -1250,9 +1250,11 @@ sub _generate_config_h {
my
@functions
=
qw(
_alldiv _allmul _allrem _aulldiv _aullrem
_access _chdir _close _lseek _mkdir _open _pclose _popen _read _rmdir _write _stat
_snprintf _s
tricmp _strnicmp _vsnprintf _wcsicmp wcslen
_snprintf _s
pawnvp _stricmp _strnicmp _vsnprintf _wcsicmp
ecvt fcvt gcvt
memmove
strerror
wcslen
)
;
foreach
my
$function
(
@functions
)
{
print
OUT
"#define HAVE_\U$function\E 1\n"
;
...
...
@@ -1275,6 +1277,14 @@ sub _generate_config_h {
print
OUT
"#define __ASM_NAME(name) name\n"
;
print
OUT
"\n"
;
print
OUT
"/* Define to the assembler keyword used to specify a word value */"
;
print
OUT
"define __ASM_SHORT \".short\""
;
print
OUT
"\n"
;
print
OUT
"/* Define to the assembler keyword used to specify an ASCII string */"
;
print
OUT
"#define __ASM_STRING \".string\""
;
print
OUT
"\n"
;
print
OUT
"/* Define to the address where bug reports for this package should be sent. */\n"
;
print
OUT
"#define PACKAGE_BUGREPORT \"\"\n"
;
print
OUT
"\n"
;
...
...
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