~ chicken-core (chicken-5) a30d9d8fe2361b2edf9102c15d9529662dfce7e5
commit a30d9d8fe2361b2edf9102c15d9529662dfce7e5 Author: felix <felix@call-with-current-continuation.org> AuthorDate: Tue Jan 19 14:45:12 2010 +0100 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Tue Jan 19 14:45:12 2010 +0100 renamed marker diff --git a/chicken.h b/chicken.h index 13418cc8..0a0cf7cc 100644 --- a/chicken.h +++ b/chicken.h @@ -1318,7 +1318,7 @@ extern double trunc(double); #endif #if defined(C_SHARED) && defined(C_WINDOWS_GUI) -# define C_gui_nongui_marker C_externexport void C_gui_application(void) {} +# define C_gui_nongui_marker C_externexport void C_dynamic_and_gui(void) {} #else # define C_gui_nongui_marker #endif diff --git a/runtime.c b/runtime.c index fca3616f..aa1f44ca 100644 --- a/runtime.c +++ b/runtime.c @@ -8110,7 +8110,7 @@ void dload_2(void *dummy) } /* do the same check for GUI libraries: */ - p2 = GetProcAddress(handle, C_text("C_gui_application")); + p2 = GetProcAddress(handle, C_text("C_dynamic_and_gui")); #ifdef C_WINDOWS_GUI ok = p2 != NULL; /* GUI runtime, GUI code */Trap