Changeset 32089
- Timestamp:
- 01/04/15 17:43:49 (8 years ago)
- Location:
- titan/titan
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/skin.h
r32070 r32089 52 52 return &getoledrec; 53 53 } 54 55 if(ostrcmp("getstreaming", value) == 0) 56 { 57 *rettype = FUNCPIC; 58 return &getoledstreaming; 59 } 60 54 61 #endif 55 62 if(ostrcmp("getalternatepicon", value) == 0) -
titan/titan/skinfunc.h
r31995 r32089 194 194 } 195 195 196 ///streaming png 197 char* getoledstreaming(struct skin* node, char* path) 198 { 199 char* tmpstr = NULL; 200 201 if(status.streaming > 0) 202 { 203 tmpstr = ostrcat("oled_streaming.png", NULL, 0, 0); 204 205 if(path != NULL) 206 tmpstr = ostrcat("/", tmpstr, 0, 1); 207 tmpstr = ostrcat(path, tmpstr, 0, 1); 208 } 209 210 return tmpstr; 211 } 212 196 213 #endif 197 214
Note: See TracChangeset
for help on using the changeset viewer.