diff options
author | jstebbins <[email protected]> | 2009-06-19 21:37:29 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-06-19 21:37:29 +0000 |
commit | e72c285bea7f766b3378e9ed2a6e3afe95c57278 (patch) | |
tree | ac676cdd7fffa13bb7b19f8fa52ec7a6ae587ce0 /gtk/src/callbacks.h | |
parent | 7bfba0916df5e296d04ef43f42b05b0f2d66d8ca (diff) |
LinGui: Put DVD volume name scanning on it's own thread.
At startup, I scan all dvd devices for their volume names. Usually this
information is cached by the filesystem so this is fast. But every once
in a while this takes several seconds which delays the initial display
of the UI. This activity is now on it's own thread to prevent the delay.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2578 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/callbacks.h')
-rw-r--r-- | gtk/src/callbacks.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/src/callbacks.h b/gtk/src/callbacks.h index 5b2816cdf..787aa4455 100644 --- a/gtk/src/callbacks.h +++ b/gtk/src/callbacks.h @@ -58,6 +58,7 @@ void ghb_inhibit_gpm(void); #if defined(_WIN32) void wm_drive_changed(MSG *msg, signal_user_data_t *ud); #endif +gpointer ghb_cache_volnames(signal_user_data_t *ud); #endif // _CALLBACKS_H_ |