initial load of upstream version 1.06.32
[xmlrpc-c] / Windows / transport_config_win32.h
1 #define MUST_BUILD_WININET_CLIENT 1
2 #define MUST_BUILD_CURL_CLIENT 0
3 #define MUST_BUILD_LIBWWW_CLIENT 0
4 static const char * const XMLRPC_DEFAULT_TRANSPORT = "wininet";
5
6 /* 
7 Set to zero if you do not wish to build the http.sys
8 based XMLRPC-C Server
9 */
10 #define MUST_BUILD_HTTP_SYS_SERVER 1
11
12 /*
13 We use pragma statements to tell the linker what we need to link with.
14 Since Curl requires Winsock, Winmm, and libcurl, and no other
15 project does, if we are building curl support we tell the linker
16 what libs we need to add.
17 */
18 #if MUST_BUILD_CURL_CLIENT > 0
19 #ifdef _DEBUG
20 #pragma comment( lib, "../lib/libcurld.lib" )
21 #else
22 #pragma comment( lib, "../lib/libcurl.lib" )
23 #endif
24 #pragma comment( lib, "Winmm.lib" )
25 #pragma comment( lib, "Ws2_32.lib" )
26 #endif