Former-commit-id:a02aeb236c
[formerly9f19e3f712
] [formerly06a8b51d6d
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]] Former-commit-id:06a8b51d6d
Former-commit-id:3360eb6c5f
53 lines
1.3 KiB
C
53 lines
1.3 KiB
C
/*********************************************************************
|
|
log_data.h
|
|
|
|
PURPOSE
|
|
Include file for function prototypes.
|
|
|
|
NOTES
|
|
|
|
******************************************************************/
|
|
|
|
#ifndef LOG_DATA_H
|
|
#define LOG_DATA_H
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "rpf_general_defs.h"
|
|
#include "rpf_err_defs.h" /* definitions */
|
|
#include "rpf_file_defs.h"
|
|
#include "function_defs.h"
|
|
|
|
#include "fp_struct.h" /* structures */
|
|
#include "grp_struct.h"
|
|
#include "pccnames_struct.h"
|
|
#include "temp_item_struct.h"
|
|
#include "temp_info_struct.h"
|
|
#include "temp_names_struct.h"
|
|
#include "temp_records_struct.h"
|
|
|
|
#include "rpf_converts.h" /* other functions protos */
|
|
#include "time_convert.h"
|
|
|
|
#include "DbmsDefs.h"
|
|
|
|
|
|
void log_fp_grp(const int numfps,
|
|
const fp_struct *fp,
|
|
const int numgrps,
|
|
const grp_struct *grp);
|
|
|
|
void log_templatenames(const templatenames_struct *templatenames);
|
|
|
|
void log_tempnames(const temp_name_struct *tempnames,
|
|
FILE *file_ptr);
|
|
|
|
void log_pccnames(pccnames_struct *pccnames);
|
|
|
|
void log_template_info(const template_info_struct *template_info);
|
|
|
|
void log_template_buffers(const format_struct *format,
|
|
const variable_struct *variable,
|
|
const spectime_struct *spectime);
|
|
|
|
#endif
|