summaryrefslogtreecommitdiff
path: root/uisimulator/common/io.c (follow)
Commit message (Collapse)AuthorAge
* Support building tagcache db natively on PC using the core of theMiika Pekkarinen2006-11-10
| | | | | | | | | Rockbox tagcache database engine. Only host endian support at the moment and no command line parameters. Mainly for developers for debugging at the moment. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11497 a1c6a512-1295-4272-9138-f99709370657
* Allow UI simulator to be build on OS (Slightly updated version of FS5767)Barry Wardell2006-09-29
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11094 a1c6a512-1295-4272-9138-f99709370657
* Improve simulator use of multiple codecsSteve Bavin2006-09-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11083 a1c6a512-1295-4272-9138-f99709370657
* FS#5884 Fix simulator file delete/rename with dircache.Miika Pekkarinen2006-08-26
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10757 a1c6a512-1295-4272-9138-f99709370657
* Simulator: two codecs may be loaded at same time if voice is enabled.Hardeep Sidhu2006-06-17
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10130 a1c6a512-1295-4272-9138-f99709370657
* Don't pass NULL to dlclose. Stops the simulator crashing if there's a ↵Dan Everton2006-03-11
| | | | | | problem loading a plugin or codec. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9003 a1c6a512-1295-4272-9138-f99709370657
* Simulators: Fix pointer size vs. int size problems (64bit hosts) in plugin ↵Jens Arnold2006-03-02
| | | | | | loader and codec loader. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8880 a1c6a512-1295-4272-9138-f99709370657
* Protect against text-mode files in Windows by using open() instead of creat()Linus Nielsen Feltzing2006-02-22
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8781 a1c6a512-1295-4272-9138-f99709370657
* Fix permissions of directories created in the sim.Dan Everton2006-02-18
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8726 a1c6a512-1295-4272-9138-f99709370657
* Bah, O_BINARY is of course Win32 onlyLinus Nielsen Feltzing2006-02-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8564 a1c6a512-1295-4272-9138-f99709370657
* Fixed the codec loading problem in the Win32 SDL simulatorLinus Nielsen Feltzing2006-02-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8563 a1c6a512-1295-4272-9138-f99709370657
* Patch #1417462 by Dan Everton - Improved SDL simulatorLinus Nielsen Feltzing2006-02-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8546 a1c6a512-1295-4272-9138-f99709370657
* First steps towards SDL sim for windowsLinus Nielsen Feltzing2006-01-25
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8449 a1c6a512-1295-4272-9138-f99709370657
* New codec loader, using the same mechanism as the new plugin loader. API ↵Jens Arnold2006-01-18
| | | | | | version numbering restarted for the new system. Uses the target ID from configure, so don't change that too often. * Fixed sim_plugin_load_ram() to truncate the tempfile. * Reduced plugin buffer size to 512KB for iriver and iPod. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8362 a1c6a512-1295-4272-9138-f99709370657
* Model & version check for simulator plugins.Jens Arnold2006-01-16
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8356 a1c6a512-1295-4272-9138-f99709370657
* silence picky gcc4 warningsDaniel Stenberg2005-11-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8097 a1c6a512-1295-4272-9138-f99709370657
* Win32 needs the mode bits for open too.Magnus Holmgren2005-07-19
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7200 a1c6a512-1295-4272-9138-f99709370657
* Fixed a simulator crash while trying to play a song. Fixed crossfadeMiika Pekkarinen2005-07-10
| | | | | | | | when selecting a new track to play. Most likely fixed a bug which caused playback to stop on track change. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7094 a1c6a512-1295-4272-9138-f99709370657
* remove extra kludge we used to kill warnings on very old mingw cross-compileDaniel Stenberg2005-03-09
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6178 a1c6a512-1295-4272-9138-f99709370657
* Simulators: more efficient implementation of sim_filesize().Jens Arnold2005-03-09
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6175 a1c6a512-1295-4272-9138-f99709370657
* attempt to kill two annoying win32 cross-compiler warningsDaniel Stenberg2005-03-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6169 a1c6a512-1295-4272-9138-f99709370657
* Simulator: sim_rename() must not use off_t in the argument for the same ↵Jens Arnold2005-03-05
| | | | | | reason as sim_lseek(). Removed parentheses around system function names as the function name mangling is done differently with the new build system. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6145 a1c6a512-1295-4272-9138-f99709370657
* Simulators: lseek() working again for systems with an off_t datatype ↵Jens Arnold2005-02-28
| | | | | | differing from 'long' (cygwin/x11, maybe others). Removed unused sim_close(). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6084 a1c6a512-1295-4272-9138-f99709370657
* Win32 simulator also needs open() option manglingJens Arnold2005-02-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6050 a1c6a512-1295-4272-9138-f99709370657
* Proper disk statistics for the win32 simulator.Jens Arnold2005-02-22
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6042 a1c6a512-1295-4272-9138-f99709370657
* Killed some simulator warnings; proper plugin error reporting for Win32 ↵Jens Arnold2005-02-22
| | | | | | simulator. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6039 a1c6a512-1295-4272-9138-f99709370657
* Build cleanup and general fixes. fprintf() is now fdprintf(), the separationDaniel Stenberg2005-02-22
| | | | | | | between uisimulator files and firmware/apps files are better done. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6031 a1c6a512-1295-4272-9138-f99709370657
* Fixed red build...Björn Stenberg2005-01-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5648 a1c6a512-1295-4272-9138-f99709370657
* The win32 open() was called with the wrong flagsLinus Nielsen Feltzing2004-07-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4845 a1c6a512-1295-4272-9138-f99709370657
* infrastructure for sorting by date+time, now we "only" need to decide on the UIJörg Hohensohn2004-06-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4778 a1c6a512-1295-4272-9138-f99709370657
* Create files with proper permissons on unix/linux, make open() and creat()Daniel Stenberg2004-06-14
| | | | | | | warn and return -1 if the file name doesn't start with slash. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4746 a1c6a512-1295-4272-9138-f99709370657
* translate from rockbox's open() options to the options used by the hostDaniel Stenberg2004-06-14
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4745 a1c6a512-1295-4272-9138-f99709370657
* Fixed VC++ build.Hardeep Sidhu2004-06-14
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4739 a1c6a512-1295-4272-9138-f99709370657
* Finally, the archos directory sandbox works in the same way for both X11 and ↵Linus Nielsen Feltzing2004-06-10
win32 simulators. Unfortunately, this breaks the VC++ compatibility. Also, the plugin API now supports DEBUGF. Last, but not least, we have a new plugin, vbrfix.rock. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4726 a1c6a512-1295-4272-9138-f99709370657