Added support for mappings with no associated file.
[wine] / include / olectl.h
1 #ifndef __WINE_OLECTL_H
2 #define __WINE_OLECTL_H
3
4 #include "wintypes.h"
5 #include "ole.h"
6
7 #define WINOLECTLAPI INT WINAPI
8
9 /*
10  * FONTDESC is used as an OLE encapsulation of the GDI fonts
11  */
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;
22
23 WINOLECTLAPI OleCreateFontIndirect(LPFONTDESC lpFontDesc, REFIID riid, VOID** ppvObj);
24
25 #endif /*  __WINE_OLECTL_H */
26
27