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
93217c60
Commit
93217c60
authored
Feb 10, 1999
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 10, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better set of macros for defining the COM interfaces.
parent
123501fb
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
26 additions
and
38 deletions
+26
-38
shelllink.c
dlls/shell32/shelllink.c
+8
-12
shellole.c
dlls/shell32/shellole.c
+4
-6
obj_base.h
include/wine/obj_base.h
+0
-0
dsound.c
multimedia/dsound.c
+4
-6
compobj.c
ole/compobj.c
+2
-2
ifs.c
ole/ifs.c
+8
-12
No files found.
dlls/shell32/shelllink.c
View file @
93217c60
...
...
@@ -180,7 +180,7 @@ LPCLASSFACTORY IShellLink_CF_Constructor(void)
* IShellLink_CF_QueryInterface
*/
static
HRESULT
WINAPI
IShellLink_CF_QueryInterface
(
LP
UNKNOWN
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
LP
CLASSFACTORY
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
{
ICOM_THIS
(
IClassFactory
,
iface
);
char
xriid
[
50
];
...
...
@@ -207,7 +207,7 @@ static HRESULT WINAPI IShellLink_CF_QueryInterface(
/******************************************************************************
* IShellLink_CF_AddRef
*/
static
ULONG
WINAPI
IShellLink_CF_AddRef
(
LP
UNKNOWN
iface
)
static
ULONG
WINAPI
IShellLink_CF_AddRef
(
LP
CLASSFACTORY
iface
)
{
ICOM_THIS
(
IClassFactory
,
iface
);
TRACE
(
shell
,
"(%p)->(count=%lu)
\n
"
,
this
,
this
->
ref
);
...
...
@@ -218,7 +218,7 @@ static ULONG WINAPI IShellLink_CF_AddRef(LPUNKNOWN iface)
/******************************************************************************
* IShellLink_CF_Release
*/
static
ULONG
WINAPI
IShellLink_CF_Release
(
LP
UNKNOWN
iface
)
static
ULONG
WINAPI
IShellLink_CF_Release
(
LP
CLASSFACTORY
iface
)
{
ICOM_THIS
(
IClassFactory
,
iface
);
TRACE
(
shell
,
"(%p)->(count=%lu)
\n
"
,
this
,
this
->
ref
);
...
...
@@ -280,11 +280,9 @@ static HRESULT WINAPI IShellLink_CF_LockServer(LPCLASSFACTORY iface, BOOL32 fLoc
}
static
ICOM_VTABLE
(
IClassFactory
)
slcfvt
=
{
{
IShellLink_CF_QueryInterface
,
IShellLink_CF_AddRef
,
IShellLink_CF_Release
},
IShellLink_CF_Release
,
IShellLink_CF_CreateInstance
,
IShellLink_CF_LockServer
};
...
...
@@ -519,7 +517,7 @@ LPCLASSFACTORY IShellLinkW_CF_Constructor(void)
* IShellLinkW_CF_QueryInterface
*/
static
HRESULT
WINAPI
IShellLinkW_CF_QueryInterface
(
LP
UNKNOWN
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
LP
CLASSFACTORY
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
{
ICOM_THIS
(
IClassFactory
,
iface
);
char
xriid
[
50
];
...
...
@@ -546,7 +544,7 @@ static HRESULT WINAPI IShellLinkW_CF_QueryInterface(
/******************************************************************************
* IShellLinkW_CF_AddRef
*/
static
ULONG
WINAPI
IShellLinkW_CF_AddRef
(
LP
UNKNOWN
iface
)
static
ULONG
WINAPI
IShellLinkW_CF_AddRef
(
LP
CLASSFACTORY
iface
)
{
ICOM_THIS
(
IClassFactory
,
iface
);
TRACE
(
shell
,
"(%p)->(count=%lu)
\n
"
,
this
,
this
->
ref
);
...
...
@@ -557,7 +555,7 @@ static ULONG WINAPI IShellLinkW_CF_AddRef(LPUNKNOWN iface)
/******************************************************************************
* IShellLinkW_CF_Release
*/
static
ULONG
WINAPI
IShellLinkW_CF_Release
(
LP
UNKNOWN
iface
)
static
ULONG
WINAPI
IShellLinkW_CF_Release
(
LP
CLASSFACTORY
iface
)
{
ICOM_THIS
(
IClassFactory
,
iface
);
TRACE
(
shell
,
"(%p)->(count=%lu)
\n
"
,
this
,
this
->
ref
);
...
...
@@ -621,11 +619,9 @@ static HRESULT WINAPI IShellLinkW_CF_LockServer(LPCLASSFACTORY iface, BOOL32 fLo
static
ICOM_VTABLE
(
IClassFactory
)
slwcfvt
=
{
{
IShellLinkW_CF_QueryInterface
,
IShellLinkW_CF_AddRef
,
IShellLinkW_CF_Release
},
IShellLinkW_CF_Release
,
IShellLinkW_CF_CreateInstance
,
IShellLinkW_CF_LockServer
};
...
...
dlls/shell32/shellole.c
View file @
93217c60
...
...
@@ -232,7 +232,7 @@ LPCLASSFACTORY IClassFactory_Constructor(void)
* IClassFactory_QueryInterface
*/
static
HRESULT
WINAPI
IClassFactory_fnQueryInterface
(
LP
UNKNOWN
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
LP
CLASSFACTORY
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
{
ICOM_THIS
(
IClassFactory
,
iface
);
char
xriid
[
50
];
...
...
@@ -259,7 +259,7 @@ static HRESULT WINAPI IClassFactory_fnQueryInterface(
/******************************************************************************
* IClassFactory_AddRef
*/
static
ULONG
WINAPI
IClassFactory_fnAddRef
(
LP
UNKNOWN
iface
)
static
ULONG
WINAPI
IClassFactory_fnAddRef
(
LP
CLASSFACTORY
iface
)
{
ICOM_THIS
(
IClassFactory
,
iface
);
TRACE
(
shell
,
"(%p)->(count=%lu)
\n
"
,
this
,
this
->
ref
);
...
...
@@ -270,7 +270,7 @@ static ULONG WINAPI IClassFactory_fnAddRef(LPUNKNOWN iface)
/******************************************************************************
* IClassFactory_Release
*/
static
ULONG
WINAPI
IClassFactory_fnRelease
(
LP
UNKNOWN
iface
)
static
ULONG
WINAPI
IClassFactory_fnRelease
(
LP
CLASSFACTORY
iface
)
{
ICOM_THIS
(
IClassFactory
,
iface
);
TRACE
(
shell
,
"(%p)->(count=%lu)
\n
"
,
this
,
this
->
ref
);
...
...
@@ -345,11 +345,9 @@ static HRESULT WINAPI IClassFactory_fnLockServer(LPCLASSFACTORY iface, BOOL32 fL
static
ICOM_VTABLE
(
IClassFactory
)
clfvt
=
{
{
IClassFactory_fnQueryInterface
,
IClassFactory_fnAddRef
,
IClassFactory_fnRelease
},
IClassFactory_fnRelease
,
IClassFactory_fnCreateInstance
,
IClassFactory_fnLockServer
};
include/wine/obj_base.h
View file @
93217c60
This diff is collapsed.
Click to expand it.
multimedia/dsound.c
View file @
93217c60
...
...
@@ -2160,7 +2160,7 @@ HRESULT WINAPI DirectSoundCreate(LPGUID lpGUID,LPDIRECTSOUND *ppDS,IUnknown *pUn
* DirectSound ClassFactory
*/
static
HRESULT
WINAPI
DSCF_QueryInterface
(
LP
UNKNOWN
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
DSCF_QueryInterface
(
LP
CLASSFACTORY
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
ICOM_THIS
(
IClassFactory
,
iface
);
char
buf
[
80
];
...
...
@@ -2173,12 +2173,12 @@ DSCF_QueryInterface(LPUNKNOWN iface,REFIID riid,LPVOID *ppobj) {
}
static
ULONG
WINAPI
DSCF_AddRef
(
LP
UNKNOWN
iface
)
{
DSCF_AddRef
(
LP
CLASSFACTORY
iface
)
{
ICOM_THIS
(
IClassFactory
,
iface
);
return
++
(
this
->
ref
);
}
static
ULONG
WINAPI
DSCF_Release
(
LP
UNKNOWN
iface
)
{
static
ULONG
WINAPI
DSCF_Release
(
LP
CLASSFACTORY
iface
)
{
ICOM_THIS
(
IClassFactory
,
iface
);
/* static class, won't be freed */
return
--
(
this
->
ref
);
...
...
@@ -2206,11 +2206,9 @@ static HRESULT WINAPI DSCF_LockServer(LPCLASSFACTORY iface,BOOL32 dolock) {
}
static
ICOM_VTABLE
(
IClassFactory
)
DSCF_VTable
=
{
{
DSCF_QueryInterface
,
DSCF_AddRef
,
DSCF_Release
},
DSCF_Release
,
DSCF_CreateInstance
,
DSCF_LockServer
};
...
...
ole/compobj.c
View file @
93217c60
...
...
@@ -689,7 +689,7 @@ HRESULT WINE_StringFromCLSID(
* the string representation and OLESTATUS
*/
HRESULT
WINAPI
StringFromCLSID16
(
const
CLSID
*
id
,
/* [in] the GUID to be converted */
REFCLSID
id
,
/* [in] the GUID to be converted */
LPOLESTR16
*
idstr
/* [out] a pointer to a to-be-allocated segmented pointer pointing to the resulting string */
)
{
...
...
@@ -729,7 +729,7 @@ HRESULT WINAPI StringFromCLSID16(
* the string representation and OLESTATUS
*/
HRESULT
WINAPI
StringFromCLSID32
(
const
CLSID
*
id
,
/* [in] the GUID to be converted */
REFCLSID
id
,
/* [in] the GUID to be converted */
LPOLESTR32
*
idstr
/* [out] a pointer to a to-be-allocated pointer pointing to the resulting string */
)
{
char
buf
[
80
];
...
...
ole/ifs.c
View file @
93217c60
...
...
@@ -97,7 +97,7 @@ typedef struct _IMalloc16 {
/******************************************************************************
* IMalloc16_QueryInterface [COMPOBJ.500]
*/
HRESULT
WINAPI
IMalloc16_fnQueryInterface
(
LPUNKNOWN
iface
,
REFIID
refiid
,
LPVOID
*
obj
)
{
HRESULT
WINAPI
IMalloc16_fnQueryInterface
(
IMalloc16
*
iface
,
REFIID
refiid
,
LPVOID
*
obj
)
{
ICOM_THIS
(
IMalloc16
,
iface
);
char
xrefiid
[
50
];
...
...
@@ -115,7 +115,7 @@ HRESULT WINAPI IMalloc16_fnQueryInterface(LPUNKNOWN iface,REFIID refiid,LPVOID *
/******************************************************************************
* IMalloc16_AddRef [COMPOBJ.501]
*/
ULONG
WINAPI
IMalloc16_fnAddRef
(
LPUNKNOWN
iface
)
{
ULONG
WINAPI
IMalloc16_fnAddRef
(
IMalloc16
*
iface
)
{
ICOM_THIS
(
IMalloc16
,
iface
);
TRACE
(
relay
,
"(%p)->AddRef()
\n
"
,
this
);
return
1
;
/* cannot be freed */
...
...
@@ -124,7 +124,7 @@ ULONG WINAPI IMalloc16_fnAddRef(LPUNKNOWN iface) {
/******************************************************************************
* IMalloc16_Release [COMPOBJ.502]
*/
ULONG
WINAPI
IMalloc16_fnRelease
(
LPUNKNOWN
iface
)
{
ULONG
WINAPI
IMalloc16_fnRelease
(
IMalloc16
*
iface
)
{
ICOM_THIS
(
IMalloc16
,
iface
);
TRACE
(
relay
,
"(%p)->Release()
\n
"
,
this
);
return
1
;
/* cannot be freed */
...
...
@@ -198,12 +198,10 @@ IMalloc16_Constructor() {
if
(
!
msegvt16
)
{
this
->
lpvtbl
=
msegvt16
=
SEGPTR_NEW
(
ICOM_VTABLE
(
IMalloc16
));
#define VTENT(x) msegvt16->
bvt.fn##x = (void*)WIN32_GetProcAddress16(hcomp,"IMalloc16_"#x);assert(msegvt16->bvt.
fn##x)
#define VTENT(x) msegvt16->
fn##x = (void*)WIN32_GetProcAddress16(hcomp,"IMalloc16_"#x);assert(msegvt16->
fn##x)
VTENT
(
QueryInterface
);
VTENT
(
AddRef
);
VTENT
(
Release
);
#undef VTENT
#define VTENT(x) msegvt16->fn##x = (void*)WIN32_GetProcAddress16(hcomp,"IMalloc16_"#x);assert(msegvt16->fn##x)
VTENT
(
Alloc
);
VTENT
(
Realloc
);
VTENT
(
Free
);
...
...
@@ -232,7 +230,7 @@ typedef struct _IMalloc32 {
/******************************************************************************
* IMalloc32_QueryInterface [VTABLE]
*/
static
HRESULT
WINAPI
IMalloc32_fnQueryInterface
(
LP
UNKNOWN
iface
,
REFIID
refiid
,
LPVOID
*
obj
)
{
static
HRESULT
WINAPI
IMalloc32_fnQueryInterface
(
LP
MALLOC32
iface
,
REFIID
refiid
,
LPVOID
*
obj
)
{
ICOM_THIS
(
IMalloc32
,
iface
);
char
xrefiid
[
50
];
...
...
@@ -250,7 +248,7 @@ static HRESULT WINAPI IMalloc32_fnQueryInterface(LPUNKNOWN iface,REFIID refiid,L
/******************************************************************************
* IMalloc32_AddRef [VTABLE]
*/
static
ULONG
WINAPI
IMalloc32_fnAddRef
(
LP
UNKNOWN
iface
)
{
static
ULONG
WINAPI
IMalloc32_fnAddRef
(
LP
MALLOC32
iface
)
{
ICOM_THIS
(
IMalloc32
,
iface
);
TRACE
(
relay
,
"(%p)->AddRef()
\n
"
,
this
);
return
1
;
/* cannot be freed */
...
...
@@ -259,7 +257,7 @@ static ULONG WINAPI IMalloc32_fnAddRef(LPUNKNOWN iface) {
/******************************************************************************
* IMalloc32_Release [VTABLE]
*/
static
ULONG
WINAPI
IMalloc32_fnRelease
(
LP
UNKNOWN
iface
)
{
static
ULONG
WINAPI
IMalloc32_fnRelease
(
LP
MALLOC32
iface
)
{
ICOM_THIS
(
IMalloc32
,
iface
);
TRACE
(
relay
,
"(%p)->Release()
\n
"
,
this
);
return
1
;
/* cannot be freed */
...
...
@@ -320,11 +318,9 @@ static LPVOID WINAPI IMalloc32_fnHeapMinimize(LPMALLOC32 iface) {
}
static
ICOM_VTABLE
(
IMalloc32
)
VT_IMalloc32
=
{
{
IMalloc32_fnQueryInterface
,
IMalloc32_fnAddRef
,
IMalloc32_fnRelease
},
IMalloc32_fnRelease
,
IMalloc32_fnAlloc
,
IMalloc32_fnRealloc
,
IMalloc32_fnFree
,
...
...
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