!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/include/freetype2/freetype/internal/   drwxr-xr-x
Free 318.39 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     psglobal.h (10.13 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/***************************************************************************/
/*                                                                         */
/*  psglobal.h                                                             */
/*                                                                         */
/*    Global PostScript hinting structures (specification only).           */
/*                                                                         */
/*  Copyright 2001 by                                                      */
/*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
/*                                                                         */
/*  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 __PSGLOBAL_H__
#define __PSGLOBAL_H__


FT_BEGIN_HEADER


  /**********************************************************************/
  /**********************************************************************/
  /*****                                                            *****/
  /*****                  PUBLIC STRUCTURES & API                   *****/
  /*****                                                            *****/
  /**********************************************************************/
  /**********************************************************************/

#if 0

  /*************************************************************************/
  /*                                                                       */
  /* @constant:                                                            */
  /*    PS_GLOBALS_MAX_BLUE_ZONES                                          */
  /*                                                                       */
  /* @description:                                                         */
  /*    The maximum number of blue zones in a font global hints structure. */
  /*    See @PS_Globals_BluesRec.                                          */
  /*                                                                       */
#define PS_GLOBALS_MAX_BLUE_ZONES  16


  /*************************************************************************/
  /*                                                                       */
  /* @constant:                                                            */
  /*    PS_GLOBALS_MAX_STD_WIDTHS                                          */
  /*                                                                       */
  /* @description:                                                         */
  /*    The maximum number of standard and snap widths in either the       */
  /*    horizontal or vertical direction.  See @PS_Globals_WidthsRec.      */
  /*                                                                       */
#define PS_GLOBALS_MAX_STD_WIDTHS  16


  /*************************************************************************/
  /*                                                                       */
  /* @type:                                                                */
  /*    PS_Globals                                                         */
  /*                                                                       */
  /* @description:                                                         */
  /*    A handle to a @PS_GlobalsRec structure used to describe the global */
  /*    hints of a given font.                                             */
  /*                                                                       */
  typedef struct PS_GlobalsRec_*  PS_Globals;


  /*************************************************************************/
  /*                                                                       */
  /* @struct:                                                              */
  /*    PS_Globals_BluesRec                                                */
  /*                                                                       */
  /* @description:                                                         */
  /*    A structure used to model the global blue zones of a given font.   */
  /*                                                                       */
  /* @fields:                                                              */
  /*   count        :: The number of blue zones.                           */
  /*                                                                       */
  /*   zones        :: An array of (count*2) coordinates describing the    */
  /*                   zones.                                              */
  /*                                                                       */
  /*   count_family :: The number of family blue zones.                    */
  /*                                                                       */
  /*   zones_family :: An array of (count_family*2) coordinates describing */
  /*                   the family blue zones.                              */
  /*                                                                       */
  /*   scale        :: The blue scale to be used (fixed float).            */
  /*                                                                       */
  /*   shift        :: The blue shift to be used.                          */
  /*                                                                       */
  /*   fuzz         :: Te blue fuzz to be used.                            */
  /*                                                                       */
  /* @note:                                                                */
  /*    Each blue zone is modeled by a (reference,overshoot) coordinate    */
  /*    pair in the table.  Zones can be placed in any order.              */
  /*                                                                       */
  typedef struct  PS_Globals_BluesRec_
  {
    FT_UInt   count;
    FT_Int16  zones[2 * PS_GLOBALS_MAX_BLUE_ZONES];

    FT_UInt   count_family;
    FT_Int16  zones_family[2 * PS_GLOBALS_MAX_BLUE_ZONES];

    FT_Fixed  scale;
    FT_Int16  shift;
    FT_Int16  fuzz;

  } PS_Globals_BluesRec, *PS_Globals_Blues;


  /*************************************************************************/
  /*                                                                       */
  /* @type:                                                                */
  /*    PS_Global_Widths                                                   */
  /*                                                                       */
  /* @description:                                                         */
  /*    A handle to a @PS_Globals_WidthsRec structure used to model the    */
  /*    global standard and snap widths in a given direction.              */
  /*                                                                       */
  typedef struct PS_Globals_WidthsRec_*  PS_Globals_Widths;


  /*************************************************************************/
  /*                                                                       */
  /* @struct:                                                              */
  /*    PS_Globals_WidthsRec                                               */
  /*                                                                       */
  /* @description:                                                         */
  /*    A structure used to model the global standard and snap widths in a */
  /*    given font.                                                        */
  /*                                                                       */
  /* @fields:                                                              */
  /*    count  :: The number of widths.                                    */
  /*                                                                       */
  /*    widths :: An array of `count' widths in font units.                */
  /*                                                                       */
  /* @note:                                                                */
  /*    `widths[0]' must be the standard width or height, while remaining  */
  /*    elements of the array are snap widths or heights.                  */
  /*                                                                       */
  typedef struct  PS_Globals_WidthsRec_
  {
    FT_UInt   count;
    FT_Int16  widths[PS_GLOBALS_MAX_STD_WIDTHS];

  } PS_Globals_WidthsRec;


  /*************************************************************************/
  /*                                                                       */
  /* @struct:                                                              */
  /*    PS_GlobalsRec                                                      */
  /*                                                                       */
  /* @description:                                                         */
  /*    A structure used to model the global hints for a given font.       */
  /*                                                                       */
  /* @fields:                                                              */
  /*    horizontal :: The horizontal widths.                               */
  /*                                                                       */
  /*    vertical   :: The vertical heights.                                */
  /*                                                                       */
  /*    blues      :: The blue zones.                                      */
  /*                                                                       */
  typedef struct  PS_GlobalsRec_
  {
    PS_Globals_WidthsRec  horizontal;
    PS_Globals_WidthsRec  vertical;
    PS_Globals_BluesRec   blues;

  } PS_GlobalsRec;

#endif

 /* */

FT_END_HEADER

#endif /* __PS_GLOBAL_H__ */


/* END */

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0264 ]--