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
1cd02fa4
Commit
1cd02fa4
authored
Dec 19, 2002
by
Ove Kaaven
Committed by
Alexandre Julliard
Dec 19, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved a couple of types from include/wine/obj_*.h to
include/wtypes.idl.
parent
900ee973
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
19 deletions
+28
-19
obj_misc.h
include/wine/obj_misc.h
+0
-11
obj_storage.h
include/wine/obj_storage.h
+0
-8
wtypes.h
include/wtypes.h
+14
-0
wtypes.idl
include/wtypes.idl
+14
-0
No files found.
include/wine/obj_misc.h
View file @
1cd02fa4
...
...
@@ -130,17 +130,6 @@ ICOM_DEFINE(IMalloc,IUnknown)
#define IMalloc_HeapMinimize(p) ICOM_CALL (HeapMinimize,p)
/* values passed to CoGetMalloc */
#define MEMCTX_TASK 1
/* private task memory */
#define MEMCTX_SHARED 2
/* shared memory */
#ifdef _MAC
#define MEMCTX_MACSYSTEM 3
/* system heap on mac */
#endif
/* mainly for internal use... */
#define MEMCTX_UNKNOWN -1
#define MEMCTX_SAME -2
/*****************************************************************************
* IMallocSpy interface
*/
...
...
include/wine/obj_storage.h
View file @
1cd02fa4
...
...
@@ -132,14 +132,6 @@ typedef struct IStream IStream,*LPSTREAM;
#define STGTY_PROPERTY 4
/*****************************************************************************
* STATFLAG enumeration
*
* See IStorage and IStream
*/
#define STATFLAG_DEFAULT 0
#define STATFLAG_NONAME 1
/*****************************************************************************
* STREAM_SEEK enumeration
*
* See IStream
...
...
include/wtypes.h
View file @
1cd02fa4
...
...
@@ -192,6 +192,14 @@ typedef struct _COSERVERINFO {
DWORD
dwReserved2
;
}
COSERVERINFO
;
typedef
enum
tagMEMCTX
{
MEMCTX_TASK
=
1
,
MEMCTX_SHARED
=
2
,
MEMCTX_MACSYSTEM
=
3
,
MEMCTX_UNKNOWN
=
-
1
,
MEMCTX_SAME
=
-
2
}
MEMCTX
;
#ifndef _ROTFLAGS_DEFINED
#define _ROTFLAGS_DEFINED
#define ROTFLAGS_REGISTRATIONKEEPSALIVE 0x1
...
...
@@ -485,6 +493,12 @@ typedef enum tagSTGMOVE {
STGMOVE_SHALLOWCOPY
=
2
}
STGMOVE
;
typedef
enum
tagSTATFLAG
{
STATFLAG_DEFAULT
=
0
,
STATFLAG_NONAME
=
1
,
STATFLAG_NOOPEN
=
2
}
STATFLAG
;
#if 0
typedef struct tagCY {
LONGLONG int64;
...
...
include/wtypes.idl
View file @
1cd02fa4
...
...
@@ -199,6 +199,14 @@ typedef struct _COSERVERINFO {
DWORD
dwReserved2
;
}
COSERVERINFO
;
typedef
enum
tagMEMCTX
{
MEMCTX_TASK
=
1
,
MEMCTX_SHARED
=
2
,
MEMCTX_MACSYSTEM
=
3
,
MEMCTX_UNKNOWN
=
-
1
,
MEMCTX_SAME
=
-
2
}
MEMCTX
;
cpp_quote
(
"#ifndef _ROTFLAGS_DEFINED"
)
cpp_quote
(
"#define _ROTFLAGS_DEFINED"
)
cpp_quote
(
"#define ROTFLAGS_REGISTRATIONKEEPSALIVE 0x1"
)
...
...
@@ -466,6 +474,12 @@ typedef enum tagSTGMOVE {
STGMOVE_SHALLOWCOPY
=
2
}
STGMOVE
;
typedef
enum
tagSTATFLAG
{
STATFLAG_DEFAULT
=
0
,
STATFLAG_NONAME
=
1
,
STATFLAG_NOOPEN
=
2
}
STATFLAG
;
/********************
OLE
Automation
********************/
cpp_quote
(
"#if 0"
)
/*
for
IDL
only
*/
...
...
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