aboutsummaryrefslogtreecommitdiffhomepage
path: root/plugin.c
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2020-04-26 21:50:00 +0200
committercbdev <cb@cbcdn.com>2020-04-26 21:50:00 +0200
commit6503d83dee9c2c7dd30572b84f11b95f832e9309 (patch)
tree4c9765cbb948e6eaba66877820e16fd387f34150 /plugin.c
parent5f2808188b71c6eea7440c70321ccfe7b3ccdd55 (diff)
downloadmidimonster-6503d83dee9c2c7dd30572b84f11b95f832e9309.tar.gz
midimonster-6503d83dee9c2c7dd30572b84f11b95f832e9309.tar.bz2
midimonster-6503d83dee9c2c7dd30572b84f11b95f832e9309.zip
Disable stop-the-world windows error messages
Diffstat (limited to 'plugin.c')
-rw-r--r--plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin.c b/plugin.c
index 56d6651..e7d8eba 100644
--- a/plugin.c
+++ b/plugin.c
@@ -51,7 +51,7 @@ static int plugin_attach(char* path, char* file){
char* error = NULL;
FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
NULL, GetLastError(), MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPTSTR) &error, 0, NULL);
- fprintf(stderr, "Failed to load plugin %s: %s\n", lib, error);
+ fprintf(stderr, "Failed to load plugin %s, check that all supporting libraries are present: %s\n", lib, error);
LocalFree(error);
#else
fprintf(stderr, "Failed to load plugin %s: %s\n", lib, dlerror());