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
6a3ad422
Commit
6a3ad422
authored
Jun 12, 1999
by
Patrik Stridvall
Committed by
Alexandre Julliard
Jun 12, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added CINTERFACE and NONAMELESSUNION support.
parent
14da7b1c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
14 deletions
+18
-14
commctrl.h
include/commctrl.h
+3
-3
prsht.h
include/prsht.h
+3
-3
obj_dataobject.h
include/wine/obj_dataobject.h
+9
-5
wtypes.h
include/wtypes.h
+3
-3
No files found.
include/commctrl.h
View file @
6a3ad422
...
...
@@ -12,21 +12,21 @@
/* c++ likes nameless unions whereas c doesnt */
/* (used in property sheet structures) */
#if
def __cplusplus
#if
defined(__cplusplus) && !defined(NONAMELESSUNION)
#define DUMMYUNIONNAME
#define DUMMYUNIONNAME1
#define DUMMYUNIONNAME2
#define DUMMYUNIONNAME3
#define DUMMYUNIONNAME4
#define DUMMYUNIONNAME5
#else
#else
/* defined(__cplusplus) && !defined(NONAMELESSUNION) */
#define DUMMYUNIONNAME u
#define DUMMYUNIONNAME1 u1
#define DUMMYUNIONNAME2 u2
#define DUMMYUNIONNAME3 u3
#define DUMMYUNIONNAME4 u4
#define DUMMYUNIONNAME5 u5
#endif
#endif
/* defined(__cplusplus) && !defined(NONAMELESSUNION) */
#ifdef __cplusplus
extern
"C"
{
...
...
include/prsht.h
View file @
6a3ad422
...
...
@@ -31,21 +31,21 @@ typedef BOOL (CALLBACK *LPFNADDPROPSHEETPAGES)(LPVOID, LPFNADDPROPSHEETPAGE, LPA
/* c++ likes nameless unions whereas c doesnt */
/* (used in property sheet structures) */
#if
def __cplusplus
#if
defined(__cplusplus) && !defined(NONAMELESSUNION)
#define DUMMYUNIONNAME
#define DUMMYUNIONNAME1
#define DUMMYUNIONNAME2
#define DUMMYUNIONNAME3
#define DUMMYUNIONNAME4
#define DUMMYUNIONNAME5
#else
#else
/* defined(__cplusplus) && !defined(NONAMELESSUNION) */
#define DUMMYUNIONNAME u
#define DUMMYUNIONNAME1 u1
#define DUMMYUNIONNAME2 u2
#define DUMMYUNIONNAME3 u3
#define DUMMYUNIONNAME4 u4
#define DUMMYUNIONNAME5 u5
#endif
#endif
/* defined(__cplusplus) && !defined(NONAMELESSUNION) */
/*
* Property sheet support (structures)
...
...
include/wine/obj_dataobject.h
View file @
6a3ad422
...
...
@@ -7,11 +7,15 @@
#ifndef __WINE_WINE_OBJ_DATAOBJECT_H
#define __WINE_WINE_OBJ_DATAOBJECT_H
#if defined(__cplusplus) && !defined(NONAMELESSUNION)
#define DUMMYUNIONNAME
#else
/* defined(__cplusplus) && !defined(NONAMELESSUNION) */
#define DUMMYUNIONNAME u
#endif
/* defined(__cplusplus) && !defined(NONAMELESSUNION) */
#ifdef __cplusplus
#define DUMMY_UNION_NAME
#else
#define DUMMY_UNION_NAME u
#endif
extern
"C"
{
#endif
/* defined(__cplusplus) */
/*****************************************************************************
* Predeclare the structures
...
...
@@ -118,7 +122,7 @@ struct STGMEDIUM
LPOLESTR
lpszFileName
;
IStream
*
pstm
;
IStorage
*
pstg
;
}
DUMMY
_UNION_
NAME
;
}
DUMMY
UNION
NAME
;
IUnknown
*
pUnkForRelease
;
};
...
...
include/wtypes.h
View file @
6a3ad422
...
...
@@ -51,17 +51,17 @@ typedef GUID *LPGUID;
typedef
GUID
CLSID
,
*
LPCLSID
;
typedef
GUID
IID
,
*
LPIID
;
typedef
GUID
FMTID
,
*
LPFMTID
;
#if
def __cplusplus
#if
defined(__cplusplus) && !defined(CINTERFACE)
#define REFGUID const GUID &
#define REFCLSID const CLSID &
#define REFIID const IID &
#define REFFMTID const FMTID &
#else
/* !defined(__cplusplus) */
#else
/* !defined(__cplusplus)
&& !defined(CINTERFACE)
*/
#define REFGUID const GUID* const
#define REFCLSID const CLSID* const
#define REFIID const IID* const
#define REFFMTID const FMTID* const
#endif
/* !defined(__cplusplus) */
#endif
/* !defined(__cplusplus)
&& !defined(CINTERFACE)
*/
extern
const
IID
GUID_NULL
;
#define IID_NULL GUID_NULL
...
...
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