mirror of
https://github.com/nasa/trick.git
synced 2025-01-25 13:49:51 +00:00
14a75508a3
Changed all header file once include variables to follow the same naming convention and not start with any underscores. Also deleted old incorrect copyright notices. Also removed $Id: tags from all files. Fixes #14. Fixes #22.
26 lines
513 B
C
26 lines
513 B
C
#ifndef MESSAGE_PROTO_H
|
|
#define MESSAGE_PROTO_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int message_publish(int level, const char *format_msg, ...) ;
|
|
int message_publish_standalone(int level, const char *format_msg, ...) ;
|
|
int send_hs(FILE * fp, const char *format_msg, ...) ;
|
|
|
|
#ifndef SWIG
|
|
int vmessage_publish(int level, const char *format_msg, va_list args) ;
|
|
int vsend_hs(FILE * fp, const char *format_msg, va_list args) ;
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|