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
a93a5e9c
Commit
a93a5e9c
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 some definitions from include/wine/obj_moniker.h to
dlls/ole32/moniker.h.
parent
174b1884
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
31 additions
and
12 deletions
+31
-12
antimoniker.c
dlls/ole32/antimoniker.c
+5
-0
compositemoniker.c
dlls/ole32/compositemoniker.c
+5
-2
filemoniker.c
dlls/ole32/filemoniker.c
+5
-0
itemmoniker.c
dlls/ole32/itemmoniker.c
+5
-0
moniker.h
dlls/ole32/moniker.h
+11
-0
obj_moniker.h
include/wine/obj_moniker.h
+0
-10
No files found.
dlls/ole32/antimoniker.c
View file @
a93a5e9c
...
...
@@ -25,9 +25,14 @@
#include "wine/unicode.h"
#include "objbase.h"
#include "wine/debug.h"
#include "moniker.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ole
);
const
CLSID
CLSID_AntiMoniker
=
{
0x305
,
0
,
0
,
{
0xC0
,
0
,
0
,
0
,
0
,
0
,
0
,
0x46
}
};
/* AntiMoniker data structure */
typedef
struct
AntiMonikerImpl
{
...
...
dlls/ole32/compositemoniker.c
View file @
a93a5e9c
...
...
@@ -24,9 +24,14 @@
#include "wine/debug.h"
#include "wine/unicode.h"
#include "ole2.h"
#include "moniker.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ole
);
const
CLSID
CLSID_CompositeMoniker
=
{
0x309
,
0
,
0
,
{
0xC0
,
0
,
0
,
0
,
0
,
0
,
0
,
0x46
}
};
#define BLOCK_TAB_SIZE 5
/* represent the first size table and it's increment block size */
/* CompositeMoniker data structure */
...
...
@@ -1715,5 +1720,3 @@ HRESULT WINAPI MonikerCommonPrefixWith(IMoniker* pmkThis,IMoniker* pmkOther,IMon
FIXME
(
"(),stub!
\n
"
);
return
E_NOTIMPL
;
}
dlls/ole32/filemoniker.c
View file @
a93a5e9c
...
...
@@ -26,11 +26,16 @@
#include "wine/unicode.h"
#include "wine/debug.h"
#include "objbase.h"
#include "moniker.h"
#include "compobj_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ole
);
const
CLSID
CLSID_FileMoniker
=
{
0x303
,
0
,
0
,
{
0xC0
,
0
,
0
,
0
,
0
,
0
,
0
,
0x46
}
};
/* filemoniker data structure */
typedef
struct
FileMonikerImpl
{
...
...
dlls/ole32/itemmoniker.c
View file @
a93a5e9c
...
...
@@ -26,9 +26,14 @@
#include "wine/debug.h"
#include "ole2.h"
#include "wine/unicode.h"
#include "moniker.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ole
);
const
CLSID
CLSID_ItemMoniker
=
{
0x304
,
0
,
0
,
{
0xC0
,
0
,
0
,
0
,
0
,
0
,
0
,
0x46
}
};
/* ItemMoniker data structure */
typedef
struct
ItemMonikerImpl
{
...
...
dlls/ole32/moniker.h
0 → 100644
View file @
a93a5e9c
#ifndef __WINE_MONIKER_H__
#define __WINE_MONIKER_H__
#define ICOM_THIS_From_IROTData(class, name) class* This = (class*)(((char*)name)-sizeof(void*))
extern
const
CLSID
CLSID_FileMoniker
;
extern
const
CLSID
CLSID_ItemMoniker
;
extern
const
CLSID
CLSID_AntiMoniker
;
extern
const
CLSID
CLSID_CompositeMoniker
;
#endif
/* __WINE_MONIKER_H__ */
include/wine/obj_moniker.h
View file @
a93a5e9c
...
...
@@ -50,14 +50,6 @@ typedef struct IRunnableObject IRunnableObject,*LPRUNNABLEOBJECT;
DEFINE_OLEGUID
(
IID_IRunningObjectTable
,
0x00000010L
,
0
,
0
);
typedef
struct
IRunningObjectTable
IRunningObjectTable
,
*
LPRUNNINGOBJECTTABLE
;
DEFINE_GUID
(
CLSID_FileMoniker
,
0x00000303
,
0
,
0
,
0xc0
,
0
,
0
,
0
,
0
,
0
,
0
,
0x46
);
DEFINE_GUID
(
CLSID_ItemMoniker
,
0x00000304
,
0
,
0
,
0xc0
,
0
,
0
,
0
,
0
,
0
,
0
,
0x46
);
DEFINE_GUID
(
CLSID_AntiMoniker
,
0x00000305
,
0
,
0
,
0xc0
,
0
,
0
,
0
,
0
,
0
,
0
,
0x46
);
DEFINE_GUID
(
CLSID_CompositeMoniker
,
0x00000309
,
0
,
0
,
0xc0
,
0
,
0
,
0
,
0
,
0
,
0
,
0x46
);
/*********************************************************************************
* BIND_OPTS and BIND_OPTS2 structures definition
* These structures contain parameters used during a moniker-binding operation.
...
...
@@ -260,8 +252,6 @@ ICOM_DEFINE(IROTData,IUnknown)
/*** IROTData methods ***/
#define IROTData_GetComparisonData(p,a,b,c) ICOM_CALL3(GetComparisonData,p,a,b,c)
#define ICOM_THIS_From_IROTData(class, name) class* This = (class*)(((char*)name)-sizeof(void*))
/*****************************************************************************
* IRunnableObject interface
*/
...
...
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