Search:

Type: Posts; User: martinuk

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,178

    On demand TV (API Interface)

    In UK, we have BBC iPlayer, Channel 4 4oD, SkyTV on demand etc....(don't know about USA and others)
    I wonder if there any TV company provides API or interface to access their TV contents for...
  2. Replies
    8
    Views
    4,370

    printf "%b" "\x$(printf "%x" 10)">a ref...

    printf "%b" "\x$(printf "%x" 10)">a

    ref to::how to handle hex values in bash ? - Usenet Forums
  3. Replies
    7
    Views
    8,824

    :-P Thanks

    :-P Thanks
  4. Replies
    7
    Views
    8,824

    are there any APIs i can use to start up to get...

    are there any APIs i can use to start up to get some feeling of it? or i have to start from very bottom by written some network protocol code?
  5. Replies
    7
    Views
    8,824

    hmmm, so i should focus on streaming audio stuff...

    hmmm, so i should focus on streaming audio stuff first
  6. Replies
    7
    Views
    8,824

    HowTo code a C++ Internet Radio Player?

    Hi, there i'd like to create a simple Internet radio player using C++ On linux platform,
    are there any libraries supports that, e.g. VoIP libraries??

    thanks
  7. //--------Version 1------------- //button is a...

    //--------Version 1-------------
    //button is a class and array elements in b are created by new Button(....)
    Button* b[3];

    void MainWindow::bh0(){
    std::printf("button_0 pressed\n");
    ...
  8. thanks. sorry for not clear about the code. the...

    thanks.
    sorry for not clear about the code. the class arr[3] is created by "new" .

    arry is a an array of pointer to the Class;
    arr[1] is the pointer to Class;which is initialized by new...
  9. [?] what's the doese param in destroy(class* &i) mean?

    void destroy(class* &i)
    {
    delete i;
    i = NULL;
    }

    class arr[3] = ..... .
    ./*construction for each element*/

    function(arr[0]);
Results 1 to 9 of 9