MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / win_message_cb

Function win_message_cb

gtk/src/application.c:333–344  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

331
332#if defined(_WIN32)
333G_MODULE_EXPORT GdkFilterReturn
334win_message_cb(GdkXEvent *wmevent, GdkEvent *event, gpointer data)
335{
336 signal_user_data_t *ud = ghb_ud();
337 MSG *msg = (MSG*)wmevent;
338
339 if (msg->message == WM_DEVICECHANGE)
340 {
341 wm_drive_changed(wmevent, ud);
342 }
343 return GDK_FILTER_CONTINUE;
344}
345#endif
346
347static void

Callers

nothing calls this directly

Calls 2

ghb_udFunction · 0.85
wm_drive_changedFunction · 0.85

Tested by

no test coverage detected