mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 10:14:44 +00:00

* sumatrapdf - vendor import * everything compiles (libjpeg, poppler, fitz, sumatrapdf) * does NOT link (remove the comment tags in the parent directory.rbuild file (rosapps dir) to build it) svn path=/trunk/; revision=29295
34 lines
971 B
C
34 lines
971 B
C
//========================================================================
|
|
//
|
|
// FoFiEncodings.h
|
|
//
|
|
// Copyright 1999-2003 Glyph & Cog, LLC
|
|
//
|
|
//========================================================================
|
|
|
|
#ifndef FOFIENCODINGS_H
|
|
#define FOFIENCODINGS_H
|
|
|
|
#ifdef USE_GCC_PRAGMAS
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "goo/gtypes.h"
|
|
|
|
//------------------------------------------------------------------------
|
|
// Type 1 and 1C font data
|
|
//------------------------------------------------------------------------
|
|
|
|
extern char *fofiType1StandardEncoding[256];
|
|
extern char *fofiType1ExpertEncoding[256];
|
|
|
|
//------------------------------------------------------------------------
|
|
// Type 1C font data
|
|
//------------------------------------------------------------------------
|
|
|
|
extern char *fofiType1CStdStrings[391];
|
|
extern Gushort fofiType1CISOAdobeCharset[229];
|
|
extern Gushort fofiType1CExpertCharset[166];
|
|
extern Gushort fofiType1CExpertSubsetCharset[87];
|
|
|
|
#endif
|