00001 /* 00002 * This file is part of the Sofia-SIP package 00003 * 00004 * Copyright (C) 2005 Nokia Corporation. 00005 * 00006 * Contact: Pekka Pessi <pekka.pessi@nokia-email.address.hidden> 00007 * 00008 * This library is free software; you can redistribute it and/or 00009 * modify it under the terms of the GNU Lesser General Public License 00010 * as published by the Free Software Foundation; either version 2.1 of 00011 * the License, or (at your option) any later version. 00012 * 00013 * This library is distributed in the hope that it will be useful, but 00014 * WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00016 * Lesser General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU Lesser General Public 00019 * License along with this library; if not, write to the Free Software 00020 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 00021 * 02110-1301 USA 00022 * 00023 */ 00024 00025 #ifndef SOFIA_RESOLV_SRES_CONFIG_H 00026 00027 #define SOFIA_RESOLV_SRES_CONFIG_H 00028 00037 /* ---------------------------------------------------------------------- */ 00038 /* Macros required by Win32 linkage */ 00039 00041 #define SRESPUBFUN 00042 00043 #if defined(_WIN32) && !defined(LIBSRES_STATIC) && \ 00044 (defined(_MSC_VER) || defined(__BORLANDC__) || \ 00045 defined(__CYGWIN__) || defined(__MINGW32__)) 00046 /* Windows platform with MS/Borland/Cygwin/MinGW32 compiler */ 00047 #undef SRESPUBFUN 00048 #if defined(IN_LIBSOFIA_SRES) 00049 #define SRESPUBFUN __declspec(dllexport) 00050 #else 00051 #define SRESPUBFUN __declspec(dllimport) 00052 #endif 00053 #elif defined(SYMBIAN) && !defined(LIBSRES_STATIC) 00054 /* Open C platform */ 00055 #undef SRESPUBFUN 00056 #if defined(IN_LIBSOFIA_SRES) 00057 #define SRESPUBFUN __declspec(dllexport) 00058 #else 00059 #define SRESPUBFUN __declspec(dllimport) 00060 #endif 00061 #endif 00062 00063 /* ---------------------------------------------------------------------- */ 00064 00065 /* Types required by Win32/64 */ 00066 00067 #if defined (SYMBIAN) 00068 00069 typedef int sres_socket_t; 00070 #elif defined(_WIN32) 00071 typedef SOCKET sres_socket_t; 00072 #else 00073 00074 typedef int sres_socket_t; 00075 #endif 00076 00077 #endif /* SOFIA_RESOLV_SRES_CONFIG_H */