/**************************************************************************** * * winfnt.h * * FreeType font driver for Windows FNT/FON files * * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * Copyright 2007 Dmitry Timoshkov for Codeweavers * * This file is part of the FreeType project, and may only be used, * modified, and distributed under the terms of the FreeType project * license, LICENSE.TXT. By continuing to use, modify, or distribute * this file you indicate that you have read the license and * understand and accept it fully. * */ #ifndef WINFNT_H_ #define WINFNT_H_ #include <freetype/ftwinfnt.h> #include <freetype/internal/ftdrv.h> FT_BEGIN_HEADER WinMZ_HeaderRec; WinNE_HeaderRec; WinPE32_HeaderRec; WinPE32_SectionRec; WinPE_RsrcDirRec; WinPE_RsrcDirEntryRec; WinPE_RsrcDataEntryRec; WinNameInfoRec; WinResourceInfoRec; #define WINFNT_MZ_MAGIC … #define WINFNT_NE_MAGIC … #define WINFNT_PE_MAGIC … FNT_Font; FNT_Face; FT_EXPORT_VAR( const FT_Driver_ClassRec ) winfnt_driver_class; FT_END_HEADER #endif /* WINFNT_H_ */ /* END */