Server : Apache/2.4.43 (Win64) OpenSSL/1.1.1g PHP/7.4.6 System : Windows NT USER-PC 6.1 build 7601 (Windows 7 Professional Edition Service Pack 1) AMD64 User : User ( 0) PHP Version : 7.4.6 Disable Function : NONE Directory : C:/Program Files (x86)/Common Files/Ulead Systems/DVD/ |
//======================================================================= // supplemental table to get correct device capabilities // // history // // 1.0.0.0 Alex Jun/03/2003 // Fix Matshita DVD-RAM LF-D521 cdtext-write // // 1.0.1.1 Alex Oct/09/2003 // (1) To extend the file to support key definition // (2) To support revised version as part of the key // // 1.0.1.2 Alex Apr/25/2004 // (1) To fix NU DW-082 for Mode2 vcd/svcd disc copy // //======================================================================= //**************************** // major information //**************************** [Ulead CD Capability Info] //======================================================================= // VERSION: X.Y.Z.W // where X,Y,Z,W should be recorded in decimal format (e.g. 12.13.14.15) // X.Y.Z.W are all DWORD value //======================================================================= VERSION = 1.0.1.2 //======================================================================= // CHECK: a DWORD value, record in hex format (0x?????) //======================================================================= CHECK = 0x01234567 //**************************** // key definition table //**************************** [KeyDefinitionMap] // the seperator is used to seperate properties of a key. Change it in case the seperator is used in the key value. VALUESEPERATOR = | //======================================================================= // key_def_index = key_name|key_type|default_value // (notice, '|' is reserved, no '|' is allowed in key_name, key_type, and default_value) // key_def_index: hex value in format of 0x%08x,(ex, 0x00000001, 0x00000002, .....) // key_name: should not be greater than 64 characters, can not be empty string, either. // key_type: STRING or DWORD // default_value: // DWORD in hex format (ex, 0x0123), even you don't put prefix "0x", it is interpreted as hex value // STRING: in character, no more than 128 characters. // e.g. // 0x00000001 = CDTEXTWRITE|STRING|yes // 0x00000002 = TESTFLAG|DWORD|0x0123 //======================================================================= //======================================================================= // key_def_index should be assigned continuously, the first key index is 0x00000001 (1) // once you add a key, please remember to increase MAXKEYINDEX (initial value is 0) //======================================================================= //**************************** // key definition //**************************** // cdtext write capability 0x00000001 = CDTEXTWRITE|STRING|yes // have to close disc for SAO? 0x00000002 = SAOCLOSEDISC|STRING|yes // if to add 0x00000003 = RESTRICTPREGAPCUESHEETFORMODE2|STRING|no // if to parse sub-channel information (Catalog and ISRC) 0x00000004 = DONOTPARSESUBCHANNEL|STRING|no // if to delay to read capacity 0x00000005 = DELAYREADCAPACITY|STRING|no //======================================================================= // Once you add a key definition, remember to increase MAXKEYINDEX to // notify parser to get all key definitions. //======================================================================= //**************************** // maximum key definition //**************************** MAXKEYINDEX = 5 //======================================================================= // To define an exact device and firmware it uses, please combine all vender_id+product_id+version_id // e.g.[HP DVD Writer 200j 1.06] // or you can ignore version_id in case of firmware version is not so critical // e.g.[HP DVD Writer 200j] // or if only to check vender_id, you can use // e.g.[HP ] // // vender_id: 8 characters, should keep any prefix and postfix space queried from device // product_id: 16 characters, should keep any prefix and postfix space queried from device // version_id: 4 characters, should keep any prefix and postfix space queried from device // // in internal implementation, applications should pass vender_id, product_id and version_id to engine. // the check sequence is // // if (vender_id+product_id+version_id) is found // return key_value; // else if (vender_id+product_id) is found // return key_value; // else if (vender_id) is found // return key_value; // else if (use default value) // return key_default_value; // else // return key_not_defined; //======================================================================= //!!!!!!!!!!!!!!!!!!!!!!!!!!!! // main capability table //!!!!!!!!!!!!!!!!!!!!!!!!!!!! //======================================================================= // for version 1.0.0.0 compatibility issue // the followed 4 device definitions are used for LXBurnCom.dll for backward compatibility issue // please do not change, but you can add new key to them. [MATSHITADVD-RAM LF-D521 ] CDTEXTWRITE = yes [PIONEER DVD-RW DVR-104 ] CDTEXTWRITE = yes [MATSHITADVD-RAM SW-9571 ] CDTEXTWRITE = yes [MATSHITADVD-RAM SW-9572 ] CDTEXTWRITE = yes // end of for version 1.0.0.0 compatibility issue //======================================================================= [HP DVD Writer 100j 1.06] //[HP DVD Writer 200j] //[HP ] CDTEXTWRITE = no [NU DVDRW DDW-082 ] RESTRICTPREGAPCUESHEETFORMODE2 = yes [NU DVDRW DDW-081 ] RESTRICTPREGAPCUESHEETFORMODE2 = yes [ASUS DRW-1604P ] DONOTPARSESUBCHANNEL = yes DELAYREADCAPACITY = no //======================================================================= // End of the table //=======================================================================