home *** CD-ROM | disk | FTP | other *** search
- struct WorldRect{
- float left, bottom, right, top;
- };
-
- struct viewporttype{
- int left, bottom,right,top;
- };
-
- enum justify{
- LEFT_TEXT = 0,
- CENTER_TEXT = 1,
- RIGHT_TEXT = 2,
- BOTTOM_TEXT = 0,
- TOP_TEXT = 2
- };
- int Round( float x );
- float Float( int i );
- int AdjustCRTColor( int c );
- void GetMaxCoords( int *x, int *y );
- void _moverel( float x1, float y1 );
- void _linerel( float x1, float y1 );
- void linetoXX( float x, float y );
- void linerelXX( float x, float y );
- void movetoXX( float x, float y );
- void moverelXX( float x, float y );
- float ConvertX1( float xx1);
- float ConvertY1(float yy1 );
- float ConvertX2(float xx1 );
- float ConvertY2( float yy1);
- void MoveWorldAbs( float xx1, float yy1);
- void MoveWorldRel( float xx1,float yy1 );
- void LineWorldAbs( float xx1,float yy1);
- void LineWorldRel( float xx1,float yy1 );
- void GetViewportOrigin( int *left, int *top );
- void settextjustify(int dirx, int diry);
- void settextjustifyXX( unsigned int h, unsigned int v );
- void settextstyleXX(unsigned int font, unsigned int dir, unsigned int size );
- void ClipOn();
- void ClipOff();
- void PlotterOn();
- void PlotterOff();
- void CRTGraphOn();
- void CRTGraphOff();
- void OneTimeInit(int mode);
- void setlinestyleXX( int ls, int pat,int thick );
- void setfillstyleXX( int pat,int c );
- void barXX(float x1,float y1, float x2, float y2 );
- void rectangleXX(float x1,float y1, float x2, float y2 );
- void pieXX(float x,float y,float stangle,float endangle,
- float radius,float AspectRatio);
- void outtextXX( char *s );
- void outtextPie( int x, int y, char *s);
- void SelectColor( int c );
- void SetWorldRect( struct WorldRect *r,
- float a,float b,float c,float d );
- void SetGraphViewport(int xx1,int yy1,int xx2,int yy2);
- void SetWorldCoordinates(float l, float b,float r, float t);
- void PolyLineWorldAbs( float *x, float *y, int numdat );
- void PolyLineWorldRel( float *x, float *y, int numdat );
- void BarWorld( float x1,float y1,float h,float w,
- int gc, int gh);
- void EraseWorldRect( struct WorldRect *wr );
- void ClearViewportXX();
- void closegraphics();
- char prnerr(int *i);
- void POC(int p, char c , int *err);
- void OutputPrinterChar(int PrnPort, char ch,int *error);
- void OutputPrinterString(int PrnPort, char *s,int *error);
- char GetHorizByte(int x,int y, float xm, float ym, int rv, int orient);
- char GetVertByte(int x,int y,int numPix,float xm,float ym,int rv, int orient);
- void ToshibaPScreenDump(int PrnPort,int res,float xm,float ym,
- int rv,int orient, int ff, int *error);
- void EpsonMXScreenDump(int PrnPort,int res,float xm,float ym,
- int rv,int orient, int ff, int *error);
- void EpsonFXScreenDump(int PrnPort,int res,float xm,float ym,
- int rv,int orient, int ff, int *error);
- void EpsonLQScreenDump(int PrnPort,int res,float xm,float ym,
- int rv,int orient, int ff,int *error);
- void HPLaserPlusScreenDump(int PrnPort,int res,float xm,float ym,
- int rv,int orient, int ff,int *error);
- void HPThinkJetScreenDump(int PrnPort,int res,float xm,float ym,
- int rv,int orient, int ff,int *error);
- void ScreenDump(int printer,int PrnPort,int res,float xm,float ym,
- int rv,int orient, int ff,int *error);
-