00001 /* 00002 %M This module contains the functions to interface the numerical program 00003 and the graphic program. 00004 %d January 12nd, 1999. 00005 %a Joao Luiz Elias Campos. 00006 %r $Id: xgplib.h,v 1.1 2004/06/22 05:29:59 joaoluiz Exp $ 00007 %w (C) COPYRIGHT 1999, Joao Luiz Elias Campos. 00008 All Rights Reserved 00009 Duplication of this program or any part thereof without the express 00010 written consent of the author is prohibited. 00011 */ 00012 00013 #ifndef _XGPLIB_H 00014 #define _XGPLIB_H 00015 00016 /* Graphic variables 00017 */ 00018 extern int GpType; 00019 extern int NumMaxPoints; 00020 extern int NumCurves; 00021 extern char **Labels; 00022 00023 /* Public functions 00024 */ 00025 void XGPBegin ( void ); 00026 void XGPEnd ( void ); 00027 void XGPSendPoint( int, double, double ); 00028 00029 #endif 00030