Changeset 15311
- Timestamp:
- 04/17/12 18:22:35 (11 years ago)
- Location:
- titan
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/plugins/networkbrowser/networkbrowser.h
r15268 r15311 664 664 void getnetworkbrowser_dns(struct inetwork* net, struct menulist** mlist) 665 665 { 666 int i = 0; 666 667 netinfo* nInfo; 667 668 char *tmpstr = NULL, *s = NULL; 668 669 669 if(net == NULL || mlist == NULL) return NULL;670 if(net == NULL || mlist == NULL) return; 670 671 671 672 s = ostrcat(s, net->ip, 1, 0); … … 704 705 void getnetworkbrowser_cifs(struct menulist** mlist, char* s, char* r, char* u, char* p) 705 706 { 707 int i = 0; 706 708 char* tmpstr = NULL; 707 709 shareinfo* sInfo; … … 741 743 char* tmpstr = NULL; 742 744 nfsinfo* nfsInfo; 743 int err = 0;745 int i = 0, err = 0; 744 746 745 747 if(s == NULL || r == NULL || mlist == NULL) return; -
titan/titan/epg.h
r15295 r15311 1295 1295 if(nolongdesc == 0 && epgnode->desc != NULL) 1296 1296 { 1297 ret = zip(epgnode->desc, strlen(epgnode->desc) + 1, &zbuf, &zlen, 1);1297 ret = ozip(epgnode->desc, strlen(epgnode->desc) + 1, &zbuf, &zlen, 1); 1298 1298 if(ret == 0) 1299 1299 { -
titan/titan/global.h
r15299 r15311 2000 2000 } 2001 2001 2002 int zip(char* inbuf, int inlen, char** outbuf, int* outlen, int level)2002 int ozip(char* inbuf, int inlen, char** outbuf, int* outlen, int level) 2003 2003 { 2004 2004 int ret = 0; -
titan/titan/header.h
r15310 r15311 43 43 int ipkg_install(const char* package); 44 44 int ipkg_remove(const char* package, int purge); 45 char* ipk_listbox(char* defaultstr, char* str, char* skinname, char* skintitle, char* skinpath, int showpng); 45 struct menulist* ipkmenulist(struct menulist* mlist, char* paramskinname, char* skintitle, char* paramskinpath, char* section, int showpng, int flag); 46 int ipkg_list_installed(void); 46 47 47 48 //frontenddev.h … … 329 330 struct menulist* addmenulist(struct menulist** mlist, char* name, char* text, char* pic, int deaktiv, int defaultentry); 330 331 struct menulist* menulistbox(struct menulist* mlist, char* paramskinname, char* skintitle, char* paramskinpath, char* defaultpic, int showpng, int flag); 332 struct menulist* menulistboxext(struct menulist* mlist, char* paramskinname, char* skintitle, char* paramskinpath, char* defaultpic, int showpng, int* rcreturn, int flag); 331 333 void setmenulistdefault(struct menulist* mlist, char* defaultentry); 334 void changemenulistparam(struct menulist* mlist, char* param, char* param1); 332 335 333 336 //skinfunc.h … … 336 339 337 340 //skin.h 341 void calcautoscale(int width, int height, int mwidth, int mheight, int* scalewidth, int* scaleheight); 338 342 void blitscale(int posx, int posy, int width, int height, int scalewidth, int scaleheight, int flag); 339 343 unsigned char* scale(unsigned char* buf, int width, int height, int channels, int newwidth, int newheight, int free1); … … 420 424 char* string_strip_whitechars(char *text); 421 425 int ounzip(char* inbuf, int inlen, char** outbuf, int* outlen, int maxbuf, int flag); 426 int ozip(char* inbuf, int inlen, char** outbuf, int* outlen, int level); 422 427 int delallfiles(char* dir, char* ext); 423 428 unsigned long getfilecount(char* dir); -
titan/titan/ipkg.h
r15261 r15311 354 354 if(ostrcmp("97.74.32.10", ip) == 0) 355 355 { 356 if(ostrcmp( src, "//97.74.32.10/svn/ipk/sh4/titan") != 0)356 if(ostrcmp((char*)src, "//97.74.32.10/svn/ipk/sh4/titan") != 0) 357 357 { 358 358 textbox(_("Message"), _("check your Secret Feed !"), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 600, 200, 5, 0); -
titan/titan/mipselport.h
r15306 r15311 106 106 char* zbuf = NULL; 107 107 blitscale(0, 0, fbnode->width, fbnode->height, 440, 330, 1); 108 ret = zip((char*)accelfb->fb, 440 * 330 * 4, &zbuf, &zlen, 1);108 ret = ozip((char*)accelfb->fb, 440 * 330 * 4, &zbuf, &zlen, 1); 109 109 110 110 if(ret == 0) -
titan/titan/sh4port.h
r15306 r15311 33 33 char* zbuf = NULL; 34 34 blitscale(0, 0, fbnode->width, fbnode->height, 440, 330, 1); 35 ret = zip((char*)accelfb->fb, 440 * 330 * 4, &zbuf, &zlen, 1);35 ret = ozip((char*)accelfb->fb, 440 * 330 * 4, &zbuf, &zlen, 1); 36 36 37 37 if(ret == 0)
Note: See TracChangeset
for help on using the changeset viewer.