-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSendError.c
52 lines (47 loc) · 1.92 KB
/
SendError.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* ____ _________ __ _
* / __ \___ ____ _/ /_ __(_)___ ___ ___ / / ____ ____ _(_)____
* / /_/ / _ \/ __ `/ / / / / / __ `__ \/ _ \/ / / __ \/ __ `/ / ___/
* / _, _/ __/ /_/ / / / / / / / / / / / __/ /___/ /_/ / /_/ / / /__
* /_/ |_|\___/\__,_/_/ /_/ /_/_/ /_/ /_/\___/_____/\____/\__, /_/\___/
* /____/
*
* Mako Server
**************************************************************************
*
* $Id: SendError.c 3450 2014-08-15 17:41:37Z wini $
*
* COPYRIGHT: Real Time Logic, 2012
*
* This software is copyrighted by and is the sole property of Real
* Time Logic LLC. All rights, title, ownership, or other interests in
* the software remain the property of Real Time Logic LLC. This
* software may only be used in accordance with the terms and
* conditions stipulated in the corresponding license agreement under
* which the software has been supplied. Any unauthorized use,
* duplication, transmission, distribution, or disclosure of this
* software is expressly forbidden.
*
* This Copyright notice may not be removed or modified without prior
* written consent of Real Time Logic LLC.
*
* Real Time Logic LLC. reserves the right to modify this software
* without notice.
*
* http://www.realtimelogic.com
****************************************************************************
*
*/
#include "mako.h"
void sendFatalError(const char* eMsg,
BaFatalErrorCodes ecode1,
unsigned int ecode2,
const char* file,
int line)
{
(void)eMsg;
(void)ecode1;
(void)ecode2;
(void)file;
(void)line;
}