You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
738 B
24 lines
738 B
/*************
|
|
* Header file for winprint.c
|
|
************/
|
|
|
|
#ifndef WINPRINT_H
|
|
#define WINPRINT_H
|
|
|
|
void WPRINT_PrintInit(HWND hwnd);
|
|
BOOL CALLBACK WPRINT_Abort( HDC hdc, int iError);
|
|
int WPRINT_Init(void);
|
|
int WPRINT_NewViewport( GRAPH * graph);
|
|
int WPRINT_Close(void);
|
|
int WPRINT_Clear(void);
|
|
int WPRINT_DrawLine(int x1, int y1, int x2, int y2);
|
|
int WPRINT_Arc(int x0, int y0, int radius, double theta, double delta_theta);
|
|
int WPRINT_Text( char * text, int x, int y, int degrees);
|
|
int WPRINT_DefineColor(int colorid, double red, double green, double blue);
|
|
int WPRINT_DefineLinestyle(int num, int mask);
|
|
int WPRINT_SetLinestyle(int style);
|
|
int WPRINT_SetColor( int color);
|
|
int WPRINT_Update(void);
|
|
int WPRINT_DiagramReady(void);
|
|
|
|
#endif
|