Changeset 16237 for titan/titan/struct.h


Ignore:
Timestamp:
06/02/12 20:06:51 (12 years ago)
Author:
nit
Message:

[titan] add struct tmdb and imdb to titan

File:
1 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/struct.h

    r16231 r16237  
    178178enum {FUNCTEXT, FUNCPIC, FUNCPROGRESS};
    179179enum {CASESSIONCREATE, CASESSIONBUSY, CASESSIONDEL, CASESSIONSTART, CASESSIONFINAL, CARESFIRSTENQUIRY, CARESCHANGE, CARESENQUIRY, CADATETIMESEND, CAMMIIDLE, CAMMIDISPLAYREPLAY, CAMMIFAKEOK};
     180
     181struct imdb
     182{
     183        char* title;
     184        char* year;
     185        char* rated;
     186        char* released;
     187        char* genre;
     188        char* director;
     189        char* writer;
     190        char* actors;
     191        char* plot;
     192        char* poster;
     193        char* runtime;
     194        char* rating;
     195        char* votes;
     196        char* id;
     197};
     198
     199struct tmdb
     200{
     201        char* title;
     202        char* year;
     203        char* rated;
     204        char* released;
     205        char* genre;
     206        char* runtime;
     207        char* plot;
     208        char* poster;
     209        char* rating;
     210        char* votes;
     211        char* id;
     212        char* backdrop;
     213        char* name;
     214        char* imdbid;
     215        char* orgname;
     216        char* language;
     217        char* type;
     218        char* score;
     219        char* cover;
     220        char* thumb;
     221};
    180222
    181223struct mediadbfilter
Note: See TracChangeset for help on using the changeset viewer.