Changeset 41185


Ignore:
Timestamp:
11/17/17 21:02:56 (6 years ago)
Author:
gost
Message:

[titan] add new skinfunction getvolumebar

Location:
titan/titan
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/skin.h

    r39667 r41185  
    228228                *rettype = FUNCPROGRESS;
    229229                return &getepgakttimeline;
     230        }
     231        if(ostrcmp("getvolumebar", value) == 0)
     232        {
     233                *rettype = FUNCPROGRESS;
     234                return &getvolumebar;
    230235        }
    231236        if(ostrcmp("getsnrline", value) == 0)
  • titan/titan/skinfunc.h

    r41161 r41185  
    767767}
    768768
     769char* getvolumebar(struct skin* node)
     770{
     771        char* tmpstr = NULL;
     772        tmpstr = oitoa(getvol());
     773        return tmpstr;
     774}
     775
    769776char* getaktchannelname(struct skin* node)
    770777{
Note: See TracChangeset for help on using the changeset viewer.