Commit c7b70c3b authored by Felix Paul Kühne's avatar Felix Paul Kühne

* forgot to add UserOkayCancel to the header (creates the same dialogue as...

* forgot to add UserOkayCancel to the header (creates the same dialogue as UserYesNo, but with different labels)
parent 5d04943c
......@@ -170,6 +170,8 @@ VLC_EXPORT( void, __intf_UserFatal,( vlc_object_t*, const char*, const char*, ..
VLC_EXPORT( int, __intf_UserLoginPassword,( vlc_object_t*, const char*, const char*, char **, char **) );
#define intf_UserYesNo( a, b, c ) __intf_UserYesNo( VLC_OBJECT(a),b,c )
VLC_EXPORT( int, __intf_UserYesNo,( vlc_object_t*, const char*, const char*) );
#define intf_UserOkayCancel( a, b, c ) __intf_UserOkayCancel( VLC_OBJECT(a),b,c )
VLC_EXPORT( int, __intf_UserOkayCancel,( vlc_object_t*, const char*, const char*) );
#define intf_UserProgress( a, b, c, d ) __intf_UserProgress( VLC_OBJECT(a),b,c, d )
VLC_EXPORT( int, __intf_UserProgress,( vlc_object_t*, const char*, const char*, float) );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment