mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-03-01 20:45:37 +08:00
2003-03-01 Heiko Gerdau <hg@technosis.de>
* include/oleidl.h (USERCLASSTYPE): Add enum. * include/ocidl.h (IObjectWithSite): Add interface.
This commit is contained in:
parent
dbc49afd52
commit
8c061d6294
@ -1,3 +1,8 @@
|
|||||||
|
2003-03-01 Heiko Gerdau <hg@technosis.de>
|
||||||
|
|
||||||
|
* include/oleidl.h (USERCLASSTYPE): Add enum.
|
||||||
|
* include/ocidl.h (IObjectWithSite): Add interface.
|
||||||
|
|
||||||
2003-02-28 Roland Schwingel <roland.schwingel@onevision.de>
|
2003-02-28 Roland Schwingel <roland.schwingel@onevision.de>
|
||||||
|
|
||||||
Fixup UNICODE thinko in 2003-02-22 patch.
|
Fixup UNICODE thinko in 2003-02-22 patch.
|
||||||
|
@ -41,6 +41,18 @@ DECLARE_INTERFACE_(IOleInPlaceSiteEx,IOleInPlaceSite)
|
|||||||
STDMETHOD(RequestUIActivate)(THIS) PURE;
|
STDMETHOD(RequestUIActivate)(THIS) PURE;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
EXTERN_C const IID IID_IObjectWithSite;
|
||||||
|
#undef INTERFACE
|
||||||
|
#define INTERFACE IObjectWithSite
|
||||||
|
DECLARE_INTERFACE_(IObjectWithSite,IUnknown)
|
||||||
|
{
|
||||||
|
STDMETHOD(QueryInterface)(THIS_ REFIID,PVOID*) PURE;
|
||||||
|
STDMETHOD_(ULONG,AddRef)(THIS) PURE;
|
||||||
|
STDMETHOD_(ULONG,Release)(THIS) PURE;
|
||||||
|
STDMETHOD(SetSite)(THIS_ IUnknown*) PURE;
|
||||||
|
STDMETHOD(GetSite)(THIS_ REFIID, void**) PURE;
|
||||||
|
};
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -40,6 +40,11 @@ typedef enum tagOLEGETMONIKER {
|
|||||||
OLEGETMONIKER_UNASSIGN,
|
OLEGETMONIKER_UNASSIGN,
|
||||||
OLEGETMONIKER_TEMPFORUSER
|
OLEGETMONIKER_TEMPFORUSER
|
||||||
} OLEGETMONIKER;
|
} OLEGETMONIKER;
|
||||||
|
typedef enum tagUSERCLASSTYPE {
|
||||||
|
USERCLASSTYPE_FULL=1,
|
||||||
|
USERCLASSTYPE_SHORT,
|
||||||
|
USERCLASSTYPE_APPNAME
|
||||||
|
} USERCLASSTYPE;
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
__extension__ /* IS0 C says enums limited to range of int */
|
__extension__ /* IS0 C says enums limited to range of int */
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user