~ubuntu-branches/ubuntu/maverick/sflphone/maverick

« back to all changes in this revision

Viewing changes to sflphone-common/libs/pjproject/pjlib/include/pj/compat/os_win32.h

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2010-06-03 15:59:46 UTC
  • Revision ID: james.westby@ubuntu.com-20100603155946-ybe8d8o8zx8lp0m8
Tags: upstream-0.9.8.3
ImportĀ upstreamĀ versionĀ 0.9.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: os_win32.h 3002 2009-11-10 04:30:46Z bennylp $ */
 
2
/* 
 
3
 * Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
 
4
 * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program; if not, write to the Free Software
 
18
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
 
19
 *
 
20
 *  Additional permission under GNU GPL version 3 section 7:
 
21
 *
 
22
 *  If you modify this program, or any covered work, by linking or
 
23
 *  combining it with the OpenSSL project's OpenSSL library (or a
 
24
 *  modified version of that library), containing parts covered by the
 
25
 *  terms of the OpenSSL or SSLeay licenses, Teluu Inc. (http://www.teluu.com)
 
26
 *  grants you additional permission to convey the resulting work.
 
27
 *  Corresponding Source for a non-source form of such a combination
 
28
 *  shall include the source code for the parts of OpenSSL used as well
 
29
 *  as that of the covered work.
 
30
 */
 
31
#ifndef __PJ_COMPAT_OS_WIN32_H__
 
32
#define __PJ_COMPAT_OS_WIN32_H__
 
33
 
 
34
/**
 
35
 * @file os_win32.h
 
36
 * @brief Describes Win32 operating system family specifics.
 
37
 */
 
38
 
 
39
#define PJ_OS_NAME                  "win32"
 
40
 
 
41
#define WIN32_LEAN_AND_MEAN
 
42
#define PJ_WIN32_WINNT              0x0400
 
43
#ifndef _WIN32_WINNT
 
44
#  define _WIN32_WINNT              PJ_WIN32_WINNT
 
45
#endif
 
46
 
 
47
#define PJ_HAS_ARPA_INET_H          0
 
48
#define PJ_HAS_ASSERT_H             1
 
49
#define PJ_HAS_CTYPE_H              1
 
50
#define PJ_HAS_ERRNO_H              0   /* Must be zero, otherwise errno_test() fails. */
 
51
#define PJ_HAS_LINUX_SOCKET_H       0
 
52
#define PJ_HAS_MALLOC_H             1
 
53
#define PJ_HAS_NETDB_H              0
 
54
#define PJ_HAS_NETINET_IN_H         0
 
55
#define PJ_HAS_NETINET_TCP_H        0
 
56
#define PJ_HAS_SETJMP_H             1
 
57
#define PJ_HAS_STDARG_H             1
 
58
#define PJ_HAS_STDDEF_H             1
 
59
#undef  PJ_HAS_STDINT_H
 
60
#define PJ_HAS_STDIO_H              1
 
61
#define PJ_HAS_STDLIB_H             1
 
62
#define PJ_HAS_STRING_H             1
 
63
#define PJ_HAS_SYS_IOCTL_H          0
 
64
#define PJ_HAS_SYS_SELECT_H         0
 
65
#define PJ_HAS_SYS_SOCKET_H         0
 
66
#define PJ_HAS_SYS_TIME_H           0
 
67
#define PJ_HAS_SYS_TIMEB_H          1
 
68
#define PJ_HAS_SYS_TYPES_H          1
 
69
#define PJ_HAS_TIME_H               1
 
70
#define PJ_HAS_UNISTD_H             0
 
71
 
 
72
#define PJ_HAS_MSWSOCK_H            1
 
73
#define PJ_HAS_WINSOCK_H            0
 
74
#define PJ_HAS_WINSOCK2_H           1
 
75
#define PJ_HAS_WS2TCPIP_H           1
 
76
 
 
77
#define PJ_SOCK_HAS_INET_ATON       0
 
78
 
 
79
/* Set 1 if native sockaddr_in has sin_len member. 
 
80
 * Default: 0
 
81
 */
 
82
#define PJ_SOCKADDR_HAS_LEN         0
 
83
 
 
84
/* Is errno a good way to retrieve OS errors? (No)
 
85
 */
 
86
#define PJ_HAS_ERRNO_VAR            0
 
87
 
 
88
/* When this macro is set, getsockopt(SOL_SOCKET, SO_ERROR) will return
 
89
 * the status of non-blocking connect() operation.
 
90
 */
 
91
#define PJ_HAS_SO_ERROR             1
 
92
 
 
93
/* This value specifies the value set in errno by the OS when a non-blocking
 
94
 * socket recv() or send() can not return immediately.
 
95
 */
 
96
#define PJ_BLOCKING_ERROR_VAL       WSAEWOULDBLOCK
 
97
 
 
98
/* This value specifies the value set in errno by the OS when a non-blocking
 
99
 * socket connect() can not get connected immediately.
 
100
 */
 
101
#define PJ_BLOCKING_CONNECT_ERROR_VAL   WSAEWOULDBLOCK
 
102
 
 
103
/**
 
104
 * If this macro is set, it tells select I/O Queue that select() needs to
 
105
 * be given correct value of nfds (i.e. largest fd + 1). This requires
 
106
 * select ioqueue to re-scan the descriptors on each registration and
 
107
 * unregistration.
 
108
 * If this macro is not set, then ioqueue will always give FD_SETSIZE for
 
109
 * nfds argument when calling select().
 
110
 *
 
111
 * Default: 0
 
112
 */
 
113
#define PJ_SELECT_NEEDS_NFDS            0
 
114
 
 
115
/* Default threading is enabled, unless it's overridden. */
 
116
#ifndef PJ_HAS_THREADS
 
117
#  define PJ_HAS_THREADS                (1)
 
118
#endif
 
119
 
 
120
#define PJ_HAS_HIGH_RES_TIMER           1
 
121
#define PJ_HAS_MALLOC                   1
 
122
#ifndef PJ_OS_HAS_CHECK_STACK
 
123
#   define PJ_OS_HAS_CHECK_STACK        1
 
124
#endif
 
125
 
 
126
#ifdef UNICODE
 
127
#   define PJ_NATIVE_STRING_IS_UNICODE    1
 
128
#else
 
129
#   define PJ_NATIVE_STRING_IS_UNICODE    0
 
130
#endif
 
131
 
 
132
#define PJ_ATOMIC_VALUE_TYPE            long
 
133
 
 
134
/* If 1, use Read/Write mutex emulation for platforms that don't support it */
 
135
#define PJ_EMULATE_RWMUTEX              1
 
136
 
 
137
/* If 1, pj_thread_create() should enforce the stack size when creating 
 
138
 * threads.
 
139
 * Default: 0 (let OS decide the thread's stack size).
 
140
 */
 
141
#define PJ_THREAD_SET_STACK_SIZE        0
 
142
 
 
143
/* If 1, pj_thread_create() should allocate stack from the pool supplied.
 
144
 * Default: 0 (let OS allocate memory for thread's stack).
 
145
 */
 
146
#define PJ_THREAD_ALLOCATE_STACK        0
 
147
 
 
148
 
 
149
#endif  /* __PJ_COMPAT_OS_WIN32_H__ */
 
150