зеркало из https://github.com/mozilla/gecko-dev.git
25 строки
677 B
C++
25 строки
677 B
C++
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef GFX_FONTCONFIG_FONTS_H
|
|
#define GFX_FONTCONFIG_FONTS_H
|
|
|
|
#include "cairo.h"
|
|
#include "gfxTypes.h"
|
|
#include "gfxTextRun.h"
|
|
|
|
#include "nsAutoRef.h"
|
|
#include "nsTArray.h"
|
|
|
|
#include <pango/pango.h>
|
|
|
|
class gfxFcFontSet;
|
|
class gfxFcFont;
|
|
typedef struct _FcPattern FcPattern;
|
|
typedef struct FT_FaceRec_* FT_Face;
|
|
typedef struct FT_LibraryRec_ *FT_Library;
|
|
|
|
#endif /* GFX_FONTCONFIG_FONTS_H */
|