Adapted to cursor/icon handling changes.
[wine/multimedia.git] / include / olectl.h
blobabe7b752d6dfd1c15bd84dba888d71b8226d33b1
1 #ifndef __WINE_OLECTL_H
2 #define __WINE_OLECTL_H
4 #include "wintypes.h"
5 #include "ole.h"
7 #define WINOLECTLAPI INT WINAPI
9 /*
10 * FONTDESC is used as an OLE encapsulation of the GDI fonts
12 typedef struct tagFONTDESC {
13 UINT cbSizeofstruct;
14 LPOLESTR lpstrName;
15 CY cySize;
16 SHORT sWeight;
17 SHORT sCharset;
18 BOOL fItalic;
19 BOOL fUnderline;
20 BOOL fStrikeThrough;
21 } FONTDESC, *LPFONTDESC;
23 WINOLECTLAPI OleCreateFontIndirect(LPFONTDESC lpFontDesc, REFIID riid, VOID** ppvObj);
25 #endif /* __WINE_OLECTL_H */