| 331 | |
| 332 | #if defined(_WIN32) |
| 333 | G_MODULE_EXPORT GdkFilterReturn |
| 334 | win_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 | |
| 347 | static void |
nothing calls this directly
no test coverage detected