-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrslib.h
More file actions
41 lines (41 loc) · 801 Bytes
/
Copy pathrslib.h
File metadata and controls
41 lines (41 loc) · 801 Bytes
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
#ifndef _RSLIB_H
#define _RSLIB_H
#include "rs/compiler.h"
#include "rs/defs.h"
#ifdef __sun__
#pragma pack(1)
#else
#pragma pack(push,1)
#endif
#include "rs/string.h"
#include "rs/list.h"
#include "rs/pointer.h"
#include "rs/char.h"
#include "rs/system.h"
#include "rs/except.h"
#include "rs/file.h"
#include "rs/stream.h"
#include "rs/streamproc.h"
#include "rs/dbf.h"
#include "rs/ezf.h"
#include "rs/xml.h"
#include "rs/table.h"
#include "rs/mail.h"
#include "rs/sort.h"
#include "rs/os.h"
#include "rs/query.h"
#include "rs/parse.h"
#include "rs/gif.h"
#include "rs/acrobat.h"
#include "rs/zip.h"
#ifndef TBL_NO_SQL
#include "rs/sql.h"
#include "rs/tbl_sql.h"
#endif
#include <errno.h>
#ifdef __sun__
#pragma pack(4)
#else
#pragma pack(pop)
#endif
#endif