Subversion Repositories f9daq

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 f9daq 1
#ifndef __MBUFFER_H__
2
#define __MBUFFER_H__
3
 
4
//-------------------------------------------------------------------------------------------
5
// mbuffer.h - prototypes for simple message buffering mechanisms
6
//
7
// (c) 1999-2002 ARW Elektronik
8
//
9
// this source code is published under GPL (Open Source). You can use, redistrubute and 
10
// modify it unless this header   is not modified or deleted. No warranty is given that 
11
// this software will work like expected.
12
// This product is not authorized for use as critical component in life support systems
13
// wihout the express written approval of ARW Elektronik Germany.
14
//
15
// Please announce changes and hints to ARW Elektronik
16
// 
17
// $Log: mbuffer.h,v $
18
// Revision 1.3  2005/12/29 10:52:04  klaus
19
// CR-LF minor problem solved
20
//
21
// Revision 1.2  2002/10/19 09:47:30  klaus
22
// first success compiling project
23
//
24
// Revision 1.1.1.1  2002/10/18 22:14:29  klaus
25
//
26
 
27
void AddIRQtoBuffer(short level, short vector);
28
void AddMsgtoBuffer(int where, unsigned long Error);
29
void AddMsgAsStringtoBuffer(char *strn);
30
char *ReadMessageBuffer(void);
31
void InitMessageBuffer(void);
32
 
33
#endif /* __MBUFFER_H__ */