Former-commit-id:fda897d2d0
[formerly253e8bc948
] [formerly295cbf95e5
[formerly 0816cd253c86acc699cb90866131619c4679f631]] Former-commit-id:295cbf95e5
Former-commit-id:ae3d17c698
26 lines
893 B
C
Executable file
26 lines
893 B
C
Executable file
#ifndef _AFCREATEXML_H
|
|
#define _AFCREATEXML_H
|
|
|
|
/*
|
|
* Global definitions
|
|
*/
|
|
#define NUM_TYPES (3) /* Number of FA areas */
|
|
#define ONEBLOCK 2048
|
|
#define XML_HDR "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
|
#define SCM_FILE \
|
|
"xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" \
|
|
xsi:noNamespaceSchemaLocation=\"file:$GEMTBL/xsd/airmet.xsd\""
|
|
#define XSD "xsd"
|
|
#define FOUR_THOUSAND ( 40 ) /* or 040 in AWC usage */
|
|
|
|
void af_create_prexml(int ntypes, char *types[3], char *refDate,
|
|
char *cycle, int nin, VG_DBStruct *el_in,
|
|
Boolean filterTimeSmears, char *issTimeStr,
|
|
char *string[NUM_TYPES],int *iret );
|
|
|
|
void loadXmlfile(char **xmlString, char *filename,int *ier);
|
|
|
|
void writeToXmlfile(char *xmlString, char *issTimeStr, char
|
|
*outputformat, int *ier);
|
|
|
|
#endif
|