xhfsq.h

来自「cvi编程举例」· C头文件 代码 · 共 46 行

H
46
字号
/**************************************************************************/
/* LabWindows/CVI User Interface Resource (UIR) Include File              */
/* Copyright (c) National Instruments 2012. All Rights Reserved.          */
/*                                                                        */
/* WARNING: Do not add to, delete from, or otherwise modify the contents  */
/*          of this include file.                                         */
/**************************************************************************/

#include <userint.h>

#ifdef __cplusplus
    extern "C" {
#endif

     /* Panels and Controls: */

#define  PANEL                            1
#define  PANEL_COMM                       2       /* control type: command, callback function: ExitP */
#define  PANEL_GRAPH                      3       /* control type: graph, callback function: (none) */
#define  PANEL_RING                       4       /* control type: ring, callback function: (none) */
#define  PANEL_NUM_FRE                    5       /* control type: numeric, callback function: (none) */
#define  PANEL_NUM_FZ                     6       /* control type: numeric, callback function: (none) */
#define  PANEL_NUM_ZQS                    7       /* control type: numeric, callback function: (none) */
#define  PANEL_COMMANDBUTTON              8       /* control type: command, callback function: Send */


     /* Control Arrays: */

          /* (no control arrays in the resource file) */


     /* Menu Bars, Menus, and Menu Items: */

          /* (no menu bars in the resource file) */


     /* Callback Prototypes: */

int  CVICALLBACK ExitP(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
int  CVICALLBACK Send(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);


#ifdef __cplusplus
    }
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?