8c2952457
김태훈
응용 프로그램 추가
|
1
2
3
4
5
6
7
8
9
10
|
#ifndef __FA_BASIC_DEF_H__
#define __FA_BASIC_DEF_H__
// GLIBC
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <unistd.h>
|
3061c73f6
김태훈
인코딩 변경 EUC-KR -> ...
|
11
|
#define EMBEDDED_LINUX // 이렇게 처리하지 않으면 EClipse에서 C 영역이 회색 바탕이 됨
|
8c2952457
김태훈
응용 프로그램 추가
|
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
53
54
55
56
57
58
59
60
61
62
63
|
#ifdef MS_WIN32
#undef EMBEDDED_LINUX
#endif
#ifdef EMBEDDED_LINUX
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/poll.h>
#include <errno.h>
#include <signal.h>
#include <time.h>
#include <ctype.h>
#include <linux/kdev_t.h>
// BSD
#include <sharemem.h>
// FANET
#include <pollmng.h>
#include <uds.h>
#include <udp.h>
#include <tcp.h>
#include <uart.h>
#include <tipc.h>
#include <tipc_bcast.h>
#include <tipc_stream.h>
//#include <dprint.h>
#else
#include <windows.h>
#include <pollmng.h>
#include <udp.h>
#include <tcp.h>
#include <uart.h>
#endif
#include <util.h>
#include <tlist.h>
#include <tstrlist.h>
#include <tinifile.h>
#include <ipc_call.h>
|
3061c73f6
김태훈
인코딩 변경 EUC-KR -> ...
|
64
|
/// 프로그램 실행상태
|
8c2952457
김태훈
응용 프로그램 추가
|
65
66
67
68
69
70
71
72
73
74
75
76
77
|
enum {
PROC_INFO_STATE_STOP = 0,
PROC_INFO_STATE_RUN,
};
#define TRACE printf( "PASS %s %d
" , __FUNCTION__, __LINE__ )
#endif // __FA_BASIC_DEF_H__
|