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
5512ae26
Commit
5512ae26
authored
Sep 06, 2004
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 06, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable MSVC warning 4116 to avoid the 'unnamed type definition in
parentheses' warning caused by TYPE_ALIGNMENT().
parent
8100e0ee
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
36 additions
and
0 deletions
+36
-0
generated.c
dlls/gdi/tests/generated.c
+4
-0
generated.c
dlls/kernel/tests/generated.c
+4
-0
generated.c
dlls/ntdll/tests/generated.c
+4
-0
generated.c
dlls/shell32/tests/generated.c
+4
-0
generated.c
dlls/shlwapi/tests/generated.c
+4
-0
generated.c
dlls/urlmon/tests/generated.c
+4
-0
generated.c
dlls/user/tests/generated.c
+4
-0
generated.c
dlls/wininet/tests/generated.c
+4
-0
winapi_test
tools/winapi/winapi_test
+4
-0
No files found.
dlls/gdi/tests/generated.c
View file @
5512ae26
...
...
@@ -47,6 +47,10 @@
*/
#endif
#if defined(TYPE_ALIGNMENT) && defined(_MSC_VER) && _MSC_VER >= 800 && !defined(__cplusplus)
#pragma warning(disable:4116)
#endif
#if !defined(TYPE_ALIGNMENT) && defined(_TYPE_ALIGNMENT)
# define TYPE_ALIGNMENT _TYPE_ALIGNMENT
#endif
...
...
dlls/kernel/tests/generated.c
View file @
5512ae26
...
...
@@ -47,6 +47,10 @@
*/
#endif
#if defined(TYPE_ALIGNMENT) && defined(_MSC_VER) && _MSC_VER >= 800 && !defined(__cplusplus)
#pragma warning(disable:4116)
#endif
#if !defined(TYPE_ALIGNMENT) && defined(_TYPE_ALIGNMENT)
# define TYPE_ALIGNMENT _TYPE_ALIGNMENT
#endif
...
...
dlls/ntdll/tests/generated.c
View file @
5512ae26
...
...
@@ -47,6 +47,10 @@
*/
#endif
#if defined(TYPE_ALIGNMENT) && defined(_MSC_VER) && _MSC_VER >= 800 && !defined(__cplusplus)
#pragma warning(disable:4116)
#endif
#if !defined(TYPE_ALIGNMENT) && defined(_TYPE_ALIGNMENT)
# define TYPE_ALIGNMENT _TYPE_ALIGNMENT
#endif
...
...
dlls/shell32/tests/generated.c
View file @
5512ae26
...
...
@@ -54,6 +54,10 @@
*/
#endif
#if defined(TYPE_ALIGNMENT) && defined(_MSC_VER) && _MSC_VER >= 800 && !defined(__cplusplus)
#pragma warning(disable:4116)
#endif
#if !defined(TYPE_ALIGNMENT) && defined(_TYPE_ALIGNMENT)
# define TYPE_ALIGNMENT _TYPE_ALIGNMENT
#endif
...
...
dlls/shlwapi/tests/generated.c
View file @
5512ae26
...
...
@@ -52,6 +52,10 @@
*/
#endif
#if defined(TYPE_ALIGNMENT) && defined(_MSC_VER) && _MSC_VER >= 800 && !defined(__cplusplus)
#pragma warning(disable:4116)
#endif
#if !defined(TYPE_ALIGNMENT) && defined(_TYPE_ALIGNMENT)
# define TYPE_ALIGNMENT _TYPE_ALIGNMENT
#endif
...
...
dlls/urlmon/tests/generated.c
View file @
5512ae26
...
...
@@ -50,6 +50,10 @@
*/
#endif
#if defined(TYPE_ALIGNMENT) && defined(_MSC_VER) && _MSC_VER >= 800 && !defined(__cplusplus)
#pragma warning(disable:4116)
#endif
#if !defined(TYPE_ALIGNMENT) && defined(_TYPE_ALIGNMENT)
# define TYPE_ALIGNMENT _TYPE_ALIGNMENT
#endif
...
...
dlls/user/tests/generated.c
View file @
5512ae26
...
...
@@ -47,6 +47,10 @@
*/
#endif
#if defined(TYPE_ALIGNMENT) && defined(_MSC_VER) && _MSC_VER >= 800 && !defined(__cplusplus)
#pragma warning(disable:4116)
#endif
#if !defined(TYPE_ALIGNMENT) && defined(_TYPE_ALIGNMENT)
# define TYPE_ALIGNMENT _TYPE_ALIGNMENT
#endif
...
...
dlls/wininet/tests/generated.c
View file @
5512ae26
...
...
@@ -51,6 +51,10 @@
*/
#endif
#if defined(TYPE_ALIGNMENT) && defined(_MSC_VER) && _MSC_VER >= 800 && !defined(__cplusplus)
#pragma warning(disable:4116)
#endif
#if !defined(TYPE_ALIGNMENT) && defined(_TYPE_ALIGNMENT)
# define TYPE_ALIGNMENT _TYPE_ALIGNMENT
#endif
...
...
tools/winapi/winapi_test
View file @
5512ae26
...
...
@@ -523,6 +523,10 @@ sub output_header {
print
OUT
" */\n"
;
print
OUT
"#endif\n"
;
print
OUT
"\n"
;
print
OUT
"#if defined(TYPE_ALIGNMENT) && defined(_MSC_VER) && _MSC_VER >= 800 && !defined(__cplusplus)\n"
;
print
OUT
"#pragma warning(disable:4116)\n"
;
print
OUT
"#endif\n"
;
print
OUT
"\n"
;
print
OUT
"#if !defined(TYPE_ALIGNMENT) && defined(_TYPE_ALIGNMENT)\n"
;
print
OUT
"# define TYPE_ALIGNMENT _TYPE_ALIGNMENT\n"
;
print
OUT
"#endif\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