00001
00002
00003
00004
00005
00006
00007
00008 #ifndef _DSP_H
00009 #define _DSP_H
00010
00033
00034
00035
00036
00037
00038
00039 #ifdef __cplusplus
00040 extern "C" {
00041 #endif
00042
00043 void dspInit( void );
00044 void dspWindow( double scale, double *xmin, double *xmax,
00045 double *ymin, double *ymax );
00046 void dspPanWindow( double dx, double dy, double *xmin, double *xmax,
00047 double *ymin, double *ymax );
00048 void dspLoadDisplay( int on_off );
00049 void dspModel( void );
00050
00051 #ifdef __cplusplus
00052 }
00053 #endif
00054
00057 #endif