From c7b70c3b76d4710aa1a718ad5886255b63bd02cc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Felix=20Paul=20K=C3=BChne?= <fkuehne@videolan.org>
Date: Sun, 14 May 2006 14:44:12 +0000
Subject: [PATCH] * forgot to add UserOkayCancel to the header (creates the
 same dialogue as UserYesNo, but with different labels)

---
 include/vlc_interaction.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/vlc_interaction.h b/include/vlc_interaction.h
index 36ec30c0ae99..1873d9afa543 100644
--- a/include/vlc_interaction.h
+++ b/include/vlc_interaction.h
@@ -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) );
-- 
GitLab