~ubuntu-branches/ubuntu/breezy/php5/breezy-security

« back to all changes in this revision

Viewing changes to ext/gd/gdttf.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-10-09 03:14:32 UTC
  • Revision ID: james.westby@ubuntu.com-20051009031432-kspik3lobxstafv9
Tags: upstream-5.0.5
ImportĀ upstreamĀ versionĀ 5.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: gdttf.h,v 1.3 2000/02/26 03:20:50 zeev Exp $ */
 
2
 
 
3
#ifdef _OSD_POSIX
 
4
#ifndef APACHE
 
5
#error On this EBCDIC platform, PHP is only supported as an Apache module.
 
6
#else /*APACHE*/
 
7
#ifndef CHARSET_EBCDIC
 
8
#define CHARSET_EBCDIC /* this machine uses EBCDIC, not ASCII! */
 
9
#endif
 
10
#include "ebcdic.h"
 
11
#endif /*APACHE*/
 
12
#endif /*_OSD_POSIX*/
 
13
 
 
14
char * gdttf(gdImage *im, int *brect, int fg, char *fontname,
 
15
    double ptsize, double angle, int x, int y, char *str);
 
16