Mercurial > hg > fxanalyse
view FXAllan.h @ 258:5296f3bcd160
Implement DDS clients reconnect
On network send() failures try to reconnect to the server before
returning an error. This allows to restart the network servers
controlling the DDSes wiothout having to restart the clients.
author | Daniele Nicolodi <daniele.nicolodi@obspm.fr> |
---|---|
date | Tue, 16 Jun 2015 14:31:35 +0200 |
parents | b3581a75a0b7 |
children |
line wrap: on
line source
/**************************************************************************/ /* LabWindows/CVI User Interface Resource (UIR) Include File */ /* Copyright (c) National Instruments 2015. 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