This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private boolean readXMLConfig(Activity activity) | |
| { | |
| try | |
| { | |
| Resources res = getResources(); | |
| XmlResourceParser xpp = res.getXml(R.xml.fundo); | |
| xpp.next(); | |
| int eventType = xpp.getEventType(); | |
| while(eventType != XmlResourceParser.END_DOCUMENT) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
| <title>Test page</title> | |
| <!-- javascript librarys --> | |
| <script type="text/javascript"> | |
| <!-- // | |
| window._debug=true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
| <title>Test page</title> | |
| </head> | |
| <body> | |
| <table style="border: none; width:100%; height:auto;"> | |
| <thead><tr><th colspan="2">Start...</th></tr></thead> | |
| <script type="text/javascript"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ########################################## | |
| # | |
| # Wild Witch Project | |
| # http://www.wildwitchproject.com/ | |
| # | |
| # Simple Frame sequence exporter | |
| # | |
| # author: marcosbitetti@gmail.com | |
| # : http://github.com/marcosbitetti | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ################################### | |
| # | |
| # Wild Witch Project | |
| # http://www.wildwitchproject.com/ | |
| # | |
| # Simple Frame sequence exporter | |
| # | |
| # author: marcosbitetti@gmail.com | |
| # | |
| ################################### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'wwp.view.aux.subtitle' | |
| local vars = { | |
| curTime=0, iniTime=0, iTime = 0, | |
| subs = nil, doc = nil, dSub = nil, | |
| tTime=1, cLay=2 | |
| } | |
| Cine00 = __o.class(vars, GenericControler ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <sys/time.h> | |
| static int wwp_getTimestampio(lua_State* L) | |
| { | |
| struct timeval tm; | |
| gettimeofday(&tm, 0); | |
| long double t = tm.tv_sec + tm.tv_usec*0.000001; | |
| lua_pushnumber(L,t); | |
| return 1; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <windows.h> | |
| #include "jpeg_decoder.h" | |
| #include "media.h" | |
| #include "appdata.h" | |
| #include <string.h> | |
| #include <math.h> | |
| #include <time.h> |