2009-04-09 14:43:20 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void ShowGraphWindow(void);
|
|
|
|
void HideGraphWindow(void);
|
|
|
|
void RepaintGraphWindow(void);
|
|
|
|
void MainGraphics(void);
|
|
|
|
void InitGraphics(int argc, char **argv);
|
|
|
|
void ExitGraphics(void);
|
|
|
|
|
|
|
|
#define MAX_GRAPH_TRACE_LEN (1024*128)
|
|
|
|
extern int GraphBuffer[MAX_GRAPH_TRACE_LEN];
|
|
|
|
extern int GraphTraceLen;
|
|
|
|
extern double CursorScaleFactor;
|
2009-07-22 00:10:58 +08:00
|
|
|
extern int PlotGridX, PlotGridY;
|
2009-04-09 14:43:20 +08:00
|
|
|
extern int CommandFinished;
|
2009-04-28 03:56:43 +08:00
|
|
|
extern int offline;
|
2009-04-09 14:43:20 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|