Former-commit-id:133dc97f67
[formerlya02aeb236c
] [formerly9f19e3f712
] [formerly06a8b51d6d
[formerly9f19e3f712
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]] Former-commit-id:06a8b51d6d
Former-commit-id:377dcd10b9
[formerly3360eb6c5f
] Former-commit-id:8e80217e59
24 lines
849 B
C
24 lines
849 B
C
/* include file containing all AODT library global variables */
|
|
#include "../inc/odtlib.h"
|
|
/* include file containing all AODT library variable definitions */
|
|
#include "../inc/odtlibdefs-x.h"
|
|
/* include file containing format statements for shared functions */
|
|
#include "../inc/odtlibfuncs.h"
|
|
|
|
int aodtv64_setdatetime( int it1, int it2, char *id1, char *id2, int idelete )
|
|
/* set history file examination boundary dates/times within AODT library memory
|
|
Inputs : AODT library start and end times/dates for history file examination
|
|
also history file delete flag (for setting starttime_v64 and endtime_v64 variables
|
|
Outputs: none
|
|
Return : -61 : error with date/time and delete command
|
|
0 : o.k.
|
|
*/
|
|
{
|
|
int iret,iok;
|
|
|
|
iret=0;
|
|
iok=aodtv64_datetime(it1,it2,id1,id2,idelete);
|
|
if(iok!=0) iret=-61;
|
|
return iret;
|
|
}
|
|
|