Sponsored Content
Full Discussion: SDK For cdwriter
Top Forums Programming SDK For cdwriter Post 302283593 by Corona688 on Tuesday 3rd of February 2009 03:23:04 PM
Old 02-03-2009
There are commandline tools available for burning CD's and DVD's on Linux systems(see cdrecord, mkisofs, growisofs, cdctl), which may be simpler to use from C# than trying to add UNIX SCSI support to an emulated Windows language.
 

4 More Discussions You Might Find Interesting

1. OS X (Apple)

iPhone SDK?

Just need a little help learning to code using the iPhone SDK. HELP WOULD BE GREAT!!! (1 Reply)
Discussion started by: Nintenman
1 Replies

2. UNIX for Advanced & Expert Users

Autosys-SDK

Hi friends, I am trying to validate the jil file programmatically. I plan to use the SDK provided by Autosys. Is CA provide any interfaces for this? Another thing : What is Jil syntax checker or Jil verifier or Jil validator? Where is it available in autosys? I am using R11 SP2 version... (0 Replies)
Discussion started by: ksswamy
0 Replies

3. Solaris

error during the installation SDK 6

Dear Members, this java already install in my machine $ uname -a SunOS maxdmail.com 5.10 Generic_139556-08 i86pc i386 i86pc $ java -version java version "1.5.0_17" Java(TM) Platform, Standard Edition for Business (build 1.5.0_17-b04) Java HotSpot(TM) Client VM (build 1.5.0_17-b04,... (1 Reply)
Discussion started by: xxmasrawy
1 Replies

4. Web Development

PubNub PHP SDK V4 Issues

Any idea why this fails? Here is a PubNub PHP SDK V4 working code which throws the error: PHP Parse error: syntax error, unexpected 'use' (T_USE) in ..... According to the PubNub docs, V4 of the PHP SDK support PHP v5.6, so I'm really confused as to why this error. Directly from this... (3 Replies)
Discussion started by: Neo
3 Replies
Configure::Writer(3pm)					User Contributed Perl Documentation				    Configure::Writer(3pm)

NAME
XMLTV::Configure::Writer - Configuration file writer for XMLTV grabbers DESCRIPTION
Utility class that helps grabbers write configuration descriptions. SYNOPSIS
use XMLTV::Configure::Writer; my $result; my $writer = new XMLTV::Writer::Configure( OUTPUT => $result, encoding => 'iso-8859-1' ); $writer->start( { grabber => 'tv_grab_xxx' } ); $writer->write_string( { id => 'username', title => [ [ 'Username', 'en' ], [ 'Anvaendarnamn', 'sv' ] ], description => [ [ 'The username for logging in to DataDirect.', 'en' ], [ 'Anvaendarnamn hos DataDirect', 'sv' ] ], } ); $writer->start_selectone( { id => 'lineup', title => [ [ 'Lineup', 'en' ], [ 'Programpaket', 'sv' ] ], description => [ [ 'The lineup of channels for your region.', 'en' ], [ 'Programpaket foer din region', 'sv' ] ], } ); $writer->write_option( { value=>'eastcoast', text=> => [ [ 'East Coast', 'en' ], [ 'Oestkusten', 'sv' ] ] } ); $writer->write_option( { value=>'westcoast', text=> => [ [ 'West Coast', 'en' ], [ 'Vaestkusten', 'sv' ] ] } ); $writer->end_selectone(); $writer->end(); print $result; EXPORTED FUNCTIONS
None. METHODS
start() Write the start of the <xmltvconfiguration> element. Parameter is a hashref which gives the attributes of this element. write_string() Write a <string> element. Parameter is a hashref with the data for the element: $writer->write_string( { id => 'username', title => [ [ 'Username', 'en' ], [ 'Anvaendarnamn', 'sv' ] ], description => [ [ 'The username for logging in to DataDirect.', 'en' ], [ 'Anvaendarnamn hos DataDirect', 'sv' ] ], default => "", } ); perl v5.14.2 2010-04-24 Configure::Writer(3pm)
All times are GMT -4. The time now is 04:45 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy