Mercurial > hg > fxanalyse
view FXAllan.h @ 163:4ff3e468ab5f
Fix configuration file name
author | Daniele Nicolodi <daniele.nicolodi@obspm.fr> |
---|---|
date | Mon, 10 Feb 2014 15:19:29 +0100 |
parents | 77539f2597b1 |
children | b3581a75a0b7 |
line wrap: on
line source
/**************************************************************************/ /* LabWindows/CVI User Interface Resource (UIR) Include File */ /* Copyright (c) National Instruments 2014. 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 ALLANPANEL 1 /* callback function: CB_GeneralAllanPanel */ #define ALLANPANEL_NORMALIZER 2 /* control type: numeric, callback function: Allan_CB_ChangeNormalization */ #define ALLANPANEL_ALLANPLOT 3 /* control type: graph, callback function: (none) */ #define ALLANPANEL_MAX 4 /* control type: numeric, callback function: Allan_CB_ChangeYLim */ #define ALLANPANEL_MIN 5 /* control type: numeric, callback function: Allan_CB_ChangeYLim */ #define ALLANPANEL_CHECKBOX_AUTOSCALE 6 /* control type: radioButton, callback function: Allan_CB_ChangeAutoScale */ #define ALLANPANEL_RESETBUTTON 7 /* control type: command, callback function: Allan_CB_Reset */ #define ALLANPANEL_DRIFT 8 /* control type: numeric, callback function: (none) */ #define ALLANPANEL_DEDRIFT 9 /* control type: radioButton, callback function: (none) */ /* 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 Allan_CB_ChangeAutoScale(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK Allan_CB_ChangeNormalization(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK Allan_CB_ChangeYLim(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK Allan_CB_Reset(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK CB_GeneralAllanPanel(int panel, int event, void *callbackData, int eventData1, int eventData2); #ifdef __cplusplus } #endif