Commit 8caa7e83c402cea4909b71ee781c7dde8328f41f
1 parent
a4ef4a7e
Exists in
master
and in
1 other branch
Add NoCompression option for VI (#7490)
Showing
2 changed files
with
4 additions
and
0 deletions
Show diff stats
src/DDClientLibC/INCLUDE/DD_comm.h
@@ -124,6 +124,7 @@ | @@ -124,6 +124,7 @@ | ||
124 | /*------ Constant to understand data availabilities -------------------------------*/ | 124 | /*------ Constant to understand data availabilities -------------------------------*/ |
125 | #define GLOBSTARTNAME "GlobalStart" | 125 | #define GLOBSTARTNAME "GlobalStart" |
126 | #define GLOBSTOPNAME "GlobalStop" | 126 | #define GLOBSTOPNAME "GlobalStop" |
127 | +#define NOCOMPRESSIONNAME "NoCompression" | ||
127 | #define SAMPLNAME "MinSampling" | 128 | #define SAMPLNAME "MinSampling" |
128 | #define REMARCHNAME "DataBaseID" | 129 | #define REMARCHNAME "DataBaseID" |
129 | #define REMINSTNAME "DataSetID" | 130 | #define REMINSTNAME "DataSetID" |
@@ -245,6 +246,7 @@ typedef struct { char InstrName[MAXSETLENGTH]; /* Virtual Instrument Name */ | @@ -245,6 +246,7 @@ typedef struct { char InstrName[MAXSETLENGTH]; /* Virtual Instrument Name */ | ||
245 | double MinGap; /* The minimal gap between two files */ | 246 | double MinGap; /* The minimal gap between two files */ |
246 | double GlobalStart; /* The principal begin of data */ | 247 | double GlobalStart; /* The principal begin of data */ |
247 | double GlobalStop; /* The principal end of data */ | 248 | double GlobalStop; /* The principal end of data */ |
249 | + int NoCompression; /* 1 if the VI don't use data file compression */ | ||
248 | char BaseName[MAXSETLENGTH]; /* The name of external data archive */ | 250 | char BaseName[MAXSETLENGTH]; /* The name of external data archive */ |
249 | char RemSetID[MAXSETLENGTH]; /* The name of VI in exterval archiving */ | 251 | char RemSetID[MAXSETLENGTH]; /* The name of VI in exterval archiving */ |
250 | int ExtCallAllowed; /* 1 If Server can call external archiving */ | 252 | int ExtCallAllowed; /* 1 If Server can call external archiving */ |
src/DDClientLibCpp/INCLUDE/DD_comm.hh
@@ -126,6 +126,7 @@ | @@ -126,6 +126,7 @@ | ||
126 | /*------ Constant to understand data availabilities -------------------------------*/ | 126 | /*------ Constant to understand data availabilities -------------------------------*/ |
127 | #define GLOBSTARTNAME "GlobalStart" | 127 | #define GLOBSTARTNAME "GlobalStart" |
128 | #define GLOBSTOPNAME "GlobalStop" | 128 | #define GLOBSTOPNAME "GlobalStop" |
129 | +#define NOCOMPRESSIONNAME "NoCompression" | ||
129 | #define SAMPLNAME "MinSampling" | 130 | #define SAMPLNAME "MinSampling" |
130 | #define REMARCHNAME "DataBaseID" | 131 | #define REMARCHNAME "DataBaseID" |
131 | #define REMINSTNAME "DataSetID" | 132 | #define REMINSTNAME "DataSetID" |
@@ -291,6 +292,7 @@ typedef struct { char InstrName[MAXSETLENGTH]; /* Virtual Instrument Name */ | @@ -291,6 +292,7 @@ typedef struct { char InstrName[MAXSETLENGTH]; /* Virtual Instrument Name */ | ||
291 | double MinGap; /* The minimal gap between two files */ | 292 | double MinGap; /* The minimal gap between two files */ |
292 | double GlobalStart; /* The principal begin of data */ | 293 | double GlobalStart; /* The principal begin of data */ |
293 | double GlobalStop; /* The principal end of data */ | 294 | double GlobalStop; /* The principal end of data */ |
295 | + int NoCompression; /* 1 if the VI don't use data file compression */ | ||
294 | char BaseName[MAXSETLENGTH]; /* The name of external data archive */ | 296 | char BaseName[MAXSETLENGTH]; /* The name of external data archive */ |
295 | char RemSetID[MAXSETLENGTH]; /* The name of VI in exterval archiving */ | 297 | char RemSetID[MAXSETLENGTH]; /* The name of VI in exterval archiving */ |
296 | int ExtCallAllowed; /* 1 If Server can call external archiving */ | 298 | int ExtCallAllowed; /* 1 If Server can call external archiving */ |