mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
20 lines
367 B
C
20 lines
367 B
C
/*
|
|
* Native font class extra info
|
|
*
|
|
* Copyright 1998 Eric Kohl
|
|
*/
|
|
|
|
#ifndef __WINE_NATIVEFONT_H
|
|
#define __WINE_NATIVEFONT_H
|
|
|
|
typedef struct tagNATIVEFONT_INFO
|
|
{
|
|
DWORD dwDummy; /* just to keep the compiler happy ;-) */
|
|
|
|
} NATIVEFONT_INFO;
|
|
|
|
|
|
extern VOID NATIVEFONT_Register (VOID);
|
|
extern VOID NATIVEFONT_Unregister (VOID);
|
|
|
|
#endif /* __WINE_NATIVEFONT_H */
|