www.pudn.com > LabWindowsCVI.rar > sample1.h


/**************************************************************************/ 
/* LabWindows/CVI User Interface Resource (UIR) Include File              */ 
/* Copyright (c) National Instruments 2002. All Rights Reserved.          */ 
/*                                                                        */ 
/* WARNING: Do not add to, delete from, or otherwise modify the contents  */ 
/*          of this include file.                                         */ 
/**************************************************************************/ 
 
#include  
 
#ifdef __cplusplus 
    extern "C" { 
#endif 
 
     /* Panels and Controls: */ 
 
#define  PANEL                           1       /* callback function: PanelCallback */ 
#define  PANEL_QUIT_BUTTON               2       /* callback function: QuitCallback */ 
#define  PANEL_CLEAR_BUTTON              3       /* callback function: ClearCallback */ 
#define  PANEL_GRAPH                     4 
#define  PANEL_PLOT_BUTTON               5       /* callback function: PlotCallBack */ 
 
 
     /* Menu Bars, Menus, and Menu Items: */ 
 
          /* (no menu bars in the resource file) */ 
 
 
     /* Callback Prototypes: */  
 
int  CVICALLBACK ClearCallback(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); 
int  CVICALLBACK PanelCallback(int panel, int event, void *callbackData, int eventData1, int eventData2); 
int  CVICALLBACK PlotCallBack(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); 
int  CVICALLBACK QuitCallback(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); 
 
 
#ifdef __cplusplus 
    } 
#endif