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
b3c7a792
Commit
b3c7a792
authored
May 23, 2002
by
Francois Gouget
Committed by
Alexandre Julliard
May 23, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include winerror.h if in Winelib mode.
parent
6db69f0b
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
3 deletions
+13
-3
mapicode.h
include/mapicode.h
+4
-0
mapidefs.h
include/mapidefs.h
+7
-0
winbase.h
include/winbase.h
+2
-3
No files found.
include/mapicode.h
View file @
b3c7a792
...
@@ -21,6 +21,10 @@
...
@@ -21,6 +21,10 @@
#ifndef MAPICODE_H
#ifndef MAPICODE_H
#define MAPICODE_H
#define MAPICODE_H
#ifndef __WINE__
#include "winerror.h"
#endif
#define MAKE_MAPI_SCODE(sev,fac,code) \
#define MAKE_MAPI_SCODE(sev,fac,code) \
( (((ULONG)(sev)<<31) | ((ULONG)(fac)<<16) | ((ULONG)(code))) )
( (((ULONG)(sev)<<31) | ((ULONG)(fac)<<16) | ((ULONG)(code))) )
...
...
include/mapidefs.h
View file @
b3c7a792
...
@@ -20,6 +20,13 @@
...
@@ -20,6 +20,13 @@
#define __WINE_MAPIDEFS_H
#define __WINE_MAPIDEFS_H
#include "windef.h"
#include "windef.h"
#ifndef __WINE__
#include "windows.h"
#include "winerror.h"
#ifndef _OBJBASE_H_
#include "objbase.h"
#endif
#endif
/* Some types */
/* Some types */
...
...
include/winbase.h
View file @
b3c7a792
...
@@ -25,9 +25,8 @@
...
@@ -25,9 +25,8 @@
#include "basetsd.h"
#include "basetsd.h"
#include "windef.h"
#include "windef.h"
#ifndef __WINE__
#ifndef RC_INVOKED
#include "winerror.h"
#include <stdarg.h>
#endif
#endif
#ifdef __cplusplus
#ifdef __cplusplus
...
...
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