svn-win32-1.4.2_dev.zip
subversion-deps-1.4.2.zip
svn-win32-libintl.zip
db-4.4.20-win32.zip
2) Second, add the following libs as link lib
libsvn_client-1.lib libsvn_delta-1.lib libsvn_diff-1.lib libsvn_fs-1.lib libsvn_fs_base-1.lib libsvn_fs_fs-1.lib libsvn_ra-1.lib libsvn_ra_dav-1.lib libsvn_ra_local-1.lib libsvn_ra_svn-1.lib libsvn_repos-1.lib libsvn_subr-1.lib libsvn_wc-1.lib libapr.lib libaprutil.lib xml.lib libneon.lib intl3_svn.lib libdb44s.lib WS2_32.Lib shfolder.lib
Note: the shfolder.lib is a must, or will get the following errors in link time:
libsvn_subr-1.lib(config_win.obj) : error LNK2001: unresolved external symbol __imp__SHGetFolderPathA@20
libsvn_subr-1.lib(config_win.obj) : error LNK2001: unresolved external symbol __imp__SHGetFolderPathW@20
Debug/mini_client.exe : fatal error LNK1120: 2 unresolved externals
3) Third, click the "project->setting..." menu item, and in the C/C++ tab, select "code generation" Category, and set "Use runtime library as "Debug Multithreaded Dll" or "Multithreaded Dll"。or will get the following errors in link time:
Linking...
MSVCRT.lib(MSVCRT.dll) : error LNK2005: _strncmp already defined in LIBC.lib(strncmp.obj)
MSVCRT.lib(MSVCRT.dll) : error LNK2005: _free already defined in LIBC.lib(free.obj)
MSVCRT.lib(MSVCRT.dll) : error LNK2005: _strchr already defined in LIBC.lib(strchr.obj)
MSVCRT.lib(MSVCRT.dll) : error LNK2005: _calloc already defined in LIBC.lib(calloc.obj)
MSVCRT.lib(MSVCRT.dll) : error LNK2005: _malloc already defined in LIBC.lib(malloc.obj)
MSVCRT.lib(MSVCRT.dll) : error LNK2005: __close already defined in LIBC.lib(close.obj)
…...
MSVCRT.lib(MSVCRT.dll) : error LNK2005: __write already defined in LIBC.lib(write.obj)
LINK : warning LNK4098: defaultlib "MSVCRT" conflicts with use of other libs; use /NODEFAULTLIB:library
Debug/mini_client.exe : fatal error LNK1169: one or more multiply defined symbols found
Error executing link.exe.
4) Finally, Download minimal_client.c from http://svn.collab.net/repos/svn/tags/1.3.2/tools/examples/, it is a example described how to use svn client api.