mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
Guard IN, OUT, and OPTIONAL by guards to prevent double definition warning.
svn path=/branches/header-work/; revision=45708
This commit is contained in:
parent
27b53c01f0
commit
8099cb0496
2 changed files with 13 additions and 0 deletions
|
@ -49,10 +49,18 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
/* Pseudo modifiers for parameters */
|
||||
#ifndef IN
|
||||
#define IN
|
||||
#endif
|
||||
#ifndef OUT
|
||||
#define OUT
|
||||
#endif
|
||||
#ifndef OPTIONAL
|
||||
#define OPTIONAL
|
||||
#endif
|
||||
#ifndef UNALLIGNED
|
||||
#define UNALLIGNED
|
||||
#endif
|
||||
|
||||
#define CONST const
|
||||
|
||||
|
|
|
@ -64,8 +64,13 @@ extern "C" {
|
|||
#ifndef TRUE
|
||||
#define TRUE 1
|
||||
#endif
|
||||
|
||||
#ifndef IN
|
||||
#define IN
|
||||
#endif
|
||||
#ifndef OUT
|
||||
#define OUT
|
||||
#endif
|
||||
#ifndef OPTIONAL
|
||||
#define OPTIONAL
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue