diff --git a/cdrskin/cdrskin_timestamp.h b/cdrskin/cdrskin_timestamp.h index 5601e6f..5218821 100644 --- a/cdrskin/cdrskin_timestamp.h +++ b/cdrskin/cdrskin_timestamp.h @@ -1 +1 @@ -#define Cdrskin_timestamP "2007.02.23.191117" +#define Cdrskin_timestamP "2007.02.23.193427" diff --git a/libburn/init.c b/libburn/init.c index e9b3382..432cf0f 100644 --- a/libburn/init.c +++ b/libburn/init.c @@ -50,6 +50,10 @@ static char abort_message_prefix[81] = {"libburn : "}; static pid_t abort_control_pid= 0; +/* ts A70223 : wether implemented untested profiles are supported */ +int burn_support_untested_profiles = 0; + + /* ts A60925 : ticket 74 */ /** Create the messenger object for libburn. */ int burn_msgs_initialize(void) @@ -73,6 +77,7 @@ int burn_initialize(void) if (burn_running) return 1; + burn_support_untested_profiles = 0; ret = burn_msgs_initialize(); if (ret <= 0) return 0; @@ -274,3 +279,10 @@ void burn_set_signal_handling(void *handle, burn_abort_handler_t handler, Cleanup_set_handlers(handle, (Cleanup_app_handler_T) handler, mode|4); } + +/* ts A70223 : API */ +void burn_allow_untested_profiles(int yes) +{ + burn_support_untested_profiles = !!yes; +} +