Changeset 91 for pjproject/branches/pjproject-0.2/pjlib/src/pj/config.h
- Timestamp:
- Dec 2, 2005 10:28:52 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/pjproject-0.2/pjlib/src/pj/config.h
r88 r91 1 /* $Header: / pjproject/pjlib/src/pj/config.h 7 5/28/05 11:00a Bennylp $ */1 /* $Header: /cvs/pjproject-0.2.9.3/pjlib/src/pj/config.h,v 1.1 2005/12/02 20:02:28 nn Exp $ */ 2 2 /* 3 3 * PJLIB - PJ Foundation Library … … 28 28 29 29 #ifndef PJ_HAS_SYS_TYPES_H 30 # define PJ_HAS_SYS_TYPES_H 130 # define PJ_HAS_SYS_TYPES_H 0 31 31 #endif 32 32 #ifndef PJ_HAS_STDDEF_H … … 74 74 #endif 75 75 76 #ifdef _WIN32_WCE 77 # undef PJ_WIN32 78 # define PJ_WIN32 2 79 # define PJ_WIN32_WINCE 1 80 # define PJ_GUID_TYPE 1 81 #endif 82 76 83 /* 77 84 * Linux … … 86 93 */ 87 94 #ifndef PJ_HAS_HIGH_RES_TIMER 88 # define PJ_HAS_HIGH_RES_TIMER 195 # define PJ_HAS_HIGH_RES_TIMER 0 89 96 #endif 90 97 … … 93 100 */ 94 101 #if !defined(PJ_HAS_PENTIUM) 95 # define PJ_HAS_PENTIUM 1102 # define PJ_HAS_PENTIUM 0 96 103 #endif 97 104 … … 121 128 * I/O Queue uses IOCP on WinNT, and fallback to select() on others 122 129 */ 123 #if defined(PJ_WIN32) && defined(PJ_WIN32_WINNT) && PJ_WIN32_WINNT >= 0x0400130 #if defined(PJ_WIN32) //&& defined(PJ_WIN32_WINNT) && PJ_WIN32_WINNT >= 0x0400 124 131 # define PJ_IOQUEUE_USE_WIN32_IOCP (0) 125 132 # define PJ_IOQUEUE_USE_SELECT (1)
Note: See TracChangeset
for help on using the changeset viewer.