www.pudn.com > LabWindowsCVI.rar > sample11.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_SAMPLE 2 /* callback function: SampleCallback */ #define PANEL_QUIT 3 /* callback function: QuitCallback */ #define PANEL_GRAPH 4 #define PANEL_DEVICE 5 #define PANEL_CHANNEL 6 #define PANEL_TIMER 7 /* callback function: TimerCallback */ /* Menu Bars, Menus, and Menu Items: */ /* (no menu bars in the resource file) */ /* Callback Prototypes: */ int CVICALLBACK PanelCallback(int panel, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK QuitCallback(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK SampleCallback(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK TimerCallback(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); #ifdef __cplusplus } #endif