diff options
author | Josh Blum <josh@joshknows.com> | 2010-03-26 15:56:04 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-03-26 15:56:04 -0800 |
commit | 72927d983f1f84127e83bf2d80db6b8ee882bad7 (patch) | |
tree | 7b06abec256e6e2d555462a8e37a17218451d834 /host/lib/load_modules.cpp | |
parent | d1e67602d21bcf97dbea28206659f3ee1146cf4a (diff) | |
download | uhd-72927d983f1f84127e83bf2d80db6b8ee882bad7.tar.gz uhd-72927d983f1f84127e83bf2d80db6b8ee882bad7.tar.bz2 uhd-72927d983f1f84127e83bf2d80db6b8ee882bad7.zip |
library loading on windows, status message tweaks, warning tweaks
Diffstat (limited to 'host/lib/load_modules.cpp')
-rw-r--r-- | host/lib/load_modules.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/load_modules.cpp b/host/lib/load_modules.cpp index 700afcd3f..bcdff98a6 100644 --- a/host/lib/load_modules.cpp +++ b/host/lib/load_modules.cpp @@ -40,8 +40,8 @@ static void load_module(const std::string &file_name){ } } -#elif HAVE_WINBASE_H -#include <Winbase.h> +#elif HAVE_WINDOWS_H +#include <Windows.h> static void load_module(const std::string &file_name){ if (LoadLibrary(file_name.c_str()) == NULL){ |