1 /***********************************************************************/
2 /* Open Visualization Data Explorer                                    */
3 /* (C) Copyright IBM Corp. 1989,1999                                   */
4 /* ALL RIGHTS RESERVED                                                 */
5 /* This code licensed under the                                        */
6 /*    "IBM PUBLIC LICENSE - Open Visualization Data Explorer"          */
7 /***********************************************************************/
8 
9 
10 #ifndef _LIBDX_H
11 #define _LIBDX_H
12 
13 #include <dxconfig.h>
14 
15 
16 #ifdef HAVE_SYS_TYPES_H
17 #include <sys/types.h>
18 #endif
19 
20 #if defined(HAVE_WINDOWS_H) && (defined(intelnt) || defined(WIN32))
21 #include <windows.h>
22 #include <winsock.h>
23 #define S_IXUSR S_IEXEC
24 #define S_IXGRP S_IEXEC
25 #define S_IXOTH S_IEXEC
26 #define EADDRINUSE      WSAEADDRINUSE
27 #endif
28 
29 #if defined(HAVE_CYGWIN_SOCKET_H)
30 #include <cygwin/socket.h>
31 #elif defined(HAVE_SYS_SOCKET_H)
32 #include <sys/socket.h>
33 #elif defined(HAVE_SOCKET_H)
34 #include <socket.h>
35 #endif
36 
37 #ifdef HAVE_SYS_UN_H
38 #include <sys/un.h>
39 #endif
40 
41 #if defined(HAVE__ERRNO) && !defined(errno)
42 #define errno _Errno()
43 #endif
44 
45 #include <dx/arch.h>
46 
47 #include <dx/error.h>
48 #include <dx/timing.h>
49 #include <dx/memory.h>
50 #include <dx/object.h>
51 #include <dx/cache.h>
52 #include <dx/task.h>
53 #include <dx/basic.h>
54 
55 #include <dx/private.h>
56 #include <dx/array.h>
57 #include <dx/arrayhandles.h>
58 #include <dx/string.h>
59 #include <dx/field.h>
60 #include <dx/group.h>
61 #include <dx/helper.h>
62 #include <dx/extract.h>
63 #include <dx/component.h>
64 #include <dx/import.h>
65 
66 #include <dx/partition.h>
67 #include <dx/resampling.h>
68 #include <dx/grow.h>
69 
70 #include <dx/render.h>
71 #include <dx/xform.h>
72 #include <dx/screen.h>
73 #include <dx/clipped.h>
74 #include <dx/camera.h>
75 #include <dx/light.h>
76 #include <dx/image.h>
77 
78 #include <dx/advanced.h>
79 #include <dx/geometry.h>
80 
81 #include <dx/seglist.h>
82 #include <dx/hash.h>
83 #include <dx/invalid.h>
84 
85 #include <dx/pending.h>
86 #include <dx/pick.h>
87 #include <dx/version.h>
88 
89 #include <dx/UserInteractors.h>
90 
91 #if INLINE
92 #include <vector.c>
93 #include <basic.c>
94 #endif
95 
96 #ifndef NO_STD_H
97 #include <stdio.h>
98 #include <stdlib.h>
99 #endif
100 
101 #endif
102 
103