1
1
forked from 0ad/0ad

add reference to required .lib files to fix linker errors reported by stu

This was SVN commit r1860.
This commit is contained in:
janwas 2005-01-29 16:43:46 +00:00
parent 2722cc6640
commit 41e2f48daf
2 changed files with 6 additions and 0 deletions

View File

@ -33,6 +33,7 @@
#ifdef _MSC_VER
#pragma comment(lib, "dbghelp.lib")
#pragma comment(lib, "oleaut32.lib") // VariantChangeType
#endif

View File

@ -28,6 +28,10 @@
#include <malloc.h>
#include <shlobj.h> // pick_dir
#ifdef _MSC_VER
#pragma comment(lib, "shell32.lib") // for pick_directory SH* calls
#endif
void sle(int x)
{
@ -56,6 +60,7 @@ inline int get_executable_name(char* n_path, size_t buf_size)
return nbytes? 0 : -1;
}
static int CALLBACK browse_cb(HWND hWnd, unsigned int msg, LPARAM lParam, LPARAM ldata)
{
UNUSED(lParam);