Changeset 29537 for titan/plugins


Ignore:
Timestamp:
07/23/14 20:59:00 (10 years ago)
Author:
obi
Message:

tithek add firedrive and fix putlocker hoster

Location:
titan/plugins/tithek
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • titan/plugins/tithek/tithek.c

    r28839 r29537  
    4242#include "filmon.h"
    4343#include "tvtoast.h"
     44#include "firedrive.h"
    4445
    4546char pluginname[] = "TiTan Mediathek";
  • titan/plugins/tithek/tithek_global.h

    r24486 r29537  
    206206                streamurl = putlocker(url);
    207207        else if(ostrstr(tmplink, "putlocker") != NULL)
    208                 streamurl = putlocker(url);
     208                streamurl = firedrive(url);
    209209        else if(ostrstr(tmplink, "filenuke") != NULL)
    210210                streamurl = filenuke(url);
     
    235235        else if(ostrstr(tmplink, "videoweed") != NULL)
    236236                streamurl = videoweed(url);
     237        else if(ostrstr(tmplink, "firedrive") != NULL)
     238                streamurl = firedrive(url);
    237239        else
    238240                textbox(_("Message"), _("The hoster is not yet supported !"), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 600, 200, 5, 0);
  • titan/plugins/tithek/tithek_header.h

    r28966 r29537  
    7777char* videoweed(char* link);
    7878char* tvtoast(char* link);
     79char* firedrive(char* link);
    7980int internetradio_search_local(struct skin* grid, struct skin* listbox, struct skin* countlabel, struct skin* load, char* link, char* title, char* searchstr, int flag);
    8081int internettv_search_local(struct skin* grid, struct skin* listbox, struct skin* countlabel, struct skin* load, char* link, char* title, char* searchstr, int flag);
Note: See TracChangeset for help on using the changeset viewer.