X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fengine.c;h=235277397ffddafaf287b3557401d6f3853f76a1;hb=b7b4abe0d84b7a820a2ada7a08a0d3d15a86acaf;hp=f9fd2cf148111bd977bf37b7a7b1be593801b52c;hpb=432ac0983e058133e03885171f266dc4ba07f488;p=chaz%2Fopenbox diff --git a/openbox/engine.c b/openbox/engine.c index f9fd2cf1..23527739 100644 --- a/openbox/engine.c +++ b/openbox/engine.c @@ -23,13 +23,13 @@ static gboolean load(char *name) g_assert(module == NULL); path = g_build_filename(ENGINEDIR, name, NULL); - module = g_module_open(path, G_MODULE_BIND_LAZY); + module = g_module_open(path, 0); g_free(path); if (module == NULL) { path = g_build_filename(g_get_home_dir(), ".openbox", "engines", name, NULL); - module = g_module_open(path, G_MODULE_BIND_LAZY); + module = g_module_open(path, 0); g_free(path); } @@ -42,8 +42,7 @@ static gboolean load(char *name) LOADSYM(frame_new, engine_frame_new); LOADSYM(frame_grab_client, engine_frame_grab_client); LOADSYM(frame_release_client, engine_frame_release_client); - LOADSYM(frame_adjust_size, engine_frame_adjust_size); - LOADSYM(frame_adjust_position, engine_frame_adjust_position); + LOADSYM(frame_adjust_area, engine_frame_adjust_area); LOADSYM(frame_adjust_shape, engine_frame_adjust_shape); LOADSYM(frame_adjust_state, engine_frame_adjust_state); LOADSYM(frame_adjust_focus, engine_frame_adjust_focus); @@ -52,10 +51,6 @@ static gboolean load(char *name) LOADSYM(frame_show, engine_frame_show); LOADSYM(frame_hide, engine_frame_hide); LOADSYM(get_context, engine_get_context); - LOADSYM(frame_mouse_enter, engine_mouse_enter); - LOADSYM(frame_mouse_leave, engine_mouse_leave); - LOADSYM(frame_mouse_press, engine_mouse_press); - LOADSYM(frame_mouse_release, engine_mouse_release); if (!estartup()) return FALSE;