Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
bde410ca
Commit
bde410ca
authored
Aug 28, 2008
by
Uwe Schulzweida
Browse files
add new taxis functions: taxisXXXVdateBounds and taxisXXXVtimeBounds
parent
d2dc7de9
Changes
3
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
bde410ca
2008-12-?? Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
* add new function: streamSync
* add new taxis functions: taxisXXXVdateBounds and taxisXXXVtimeBounds
* Version 1.2.1 released
2008-08-13 Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
...
...
src/cdi.h
View file @
bde410ca
...
...
@@ -678,6 +678,10 @@ void taxisDefRtime(int taxisID, int time);
int
taxisHasBounds
(
int
taxisID
);
void
taxisDefVdateBounds
(
int
taxisID
,
int
vdate_lb
,
int
vdate_ub
);
void
taxisDefVtimeBounds
(
int
taxisID
,
int
vtime_lb
,
int
vtime_ub
);
void
taxisInqVdateBounds
(
int
taxisID
,
int
*
vdate_lb
,
int
*
vdate_ub
);
void
taxisInqVtimeBounds
(
int
taxisID
,
int
*
vtime_lb
,
int
*
vtime_ub
);
...
...
src/taxis.c
View file @
bde410ca
...
...
@@ -682,6 +682,22 @@ void taxisInqVdateBounds(int taxisID, int *vdate_lb, int *vdate_ub)
}
void
taxisDefVdateBounds
(
int
taxisID
,
int
vdate_lb
,
int
vdate_ub
)
{
static
char
func
[]
=
"taxisDefVdateBounds"
;
TAXIS
*
taxisptr
;
taxisptr
=
taxis_to_pointer
(
taxisID
);
taxis_check_ptr
(
func
,
taxisptr
);
taxisptr
->
vdate_lb
=
vdate_lb
;
taxisptr
->
vdate_ub
=
vdate_ub
;
taxisptr
->
has_bounds
=
TRUE
;
}
/*
@Function taxisInqVtime
@Title Get the verification time
...
...
@@ -725,6 +741,22 @@ void taxisInqVtimeBounds(int taxisID, int *vtime_lb, int *vtime_ub)
}
void
taxisDefVtimeBounds
(
int
taxisID
,
int
vtime_lb
,
int
vtime_ub
)
{
static
char
func
[]
=
"taxisDefVtimeBounds"
;
TAXIS
*
taxisptr
;
taxisptr
=
taxis_to_pointer
(
taxisID
);
taxis_check_ptr
(
func
,
taxisptr
);
taxisptr
->
vtime_lb
=
vtime_lb
;
taxisptr
->
vtime_ub
=
vtime_ub
;
taxisptr
->
has_bounds
=
TRUE
;
}
/*
@Function taxisInqRdate
@Title Get the reference date
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment