1998-10-11 15:17:47 +02:00
|
|
|
/*
|
|
|
|
* Native font class extra info
|
|
|
|
*
|
|
|
|
* Copyright 1998 Eric Kohl
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_NATIVEFONT_H
|
|
|
|
#define __WINE_NATIVEFONT_H
|
|
|
|
|
1999-06-26 16:58:24 +02:00
|
|
|
#include "windef.h"
|
|
|
|
|
1998-10-11 15:17:47 +02:00
|
|
|
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 */
|