warzone2100/lib/framework
Giel van Schijndel fbf03af195 * Remove macros:
* ROUND: replace by a static inline function (math_round) instead
  * FRACTCONST: this macro just cast both of its arguments to float and then divide the first by the second
  * MAKEFRACT_D: this macro would cast to FRACT_D (which was typedef'd as float but should have been typedef'd as double); so cast to double instead (where required)
  * FRACTmul_D: would cast both of its arguments to FRACT_D and multiply them
  * FRACTdiv_D: would cast both of its arguments to FRACT_D and divide the first by the second
  * MAKEINT & MAKEINT_D (where #defined the same); this macro would just cast to SDWORD (aka "int" or "signed int")

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@3152 4a71c877-e1ca-e34f-864e-861f7616d084
2007-12-24 13:57:19 +00:00
..
Makefile.am Revert dodgy removal of trig functions. More testing required 2007-11-29 23:10:54 +00:00
Makefile.raw * Add a new module (printf_ext.c) to contain some printf extensions (C99 printf variants for MSVC) 2007-11-11 20:58:10 +00:00
SDL_framerate.c Basic buildfile support for ICC and silence one warning. 2007-10-02 21:43:43 +00:00
SDL_framerate.h Do parts of the proposed changes in "[Warzone-dev] build issues in FreeBSD system" by Yaroslav Kolomiyets from 24.10.2006: 2007-11-24 11:49:51 +00:00
config-macosx.h * Remove #undef WZ_NOMP3 and #define VERSION from config-macosx.h as they're both not needed anymore... 2007-12-12 21:19:29 +00:00
configfile.c * Replace a large amount of strncpy() calls with the safer strlcpy() 2007-10-27 16:18:52 +00:00
configfile.h * Task #5192: Audit some files for failure to set global pointers to NULL after having called free(global pointer) 2007-06-14 19:21:52 +00:00
cursors.h Add GPL notices to all sourcecode files. 2007-01-15 20:09:25 +00:00
cursors16.h Add GPL notices to all sourcecode files. 2007-01-15 20:09:25 +00:00
dbghelp.h Update dbghelp.h to Wine 0.9.43. 2007-08-12 01:03:38 +00:00
debug.c * Add a new debugging level LOG_SAVEGAME or "savegame" 2007-11-15 18:32:07 +00:00
debug.h * Add a new debugging level LOG_SAVEGAME or "savegame" 2007-11-15 18:32:07 +00:00
exceptionhandler.c Rename PACKAGE_MAINTAINER to PACKAGE_DISTRIBUTOR to clarify. 2007-12-23 21:14:02 +00:00
fractions.h * Remove macros: 2007-12-24 13:57:19 +00:00
frame.c Revert dodgy removal of trig functions. More testing required 2007-11-29 23:10:54 +00:00
frame.h * Add a new module (printf_ext.c) to contain some printf extensions (C99 printf variants for MSVC) 2007-11-11 20:58:10 +00:00
frameint.h Remove some unused function prototypes. 2007-04-03 17:33:38 +00:00
frameresource.c * Get rid of a large quantity of unused parameters 2007-12-10 23:15:46 +00:00
frameresource.h * Get rid of a large quantity of unused parameters 2007-12-10 23:15:46 +00:00
framework.vcproj * Update MSVC project files (part of patch #884 by Buginator) 2007-12-14 12:12:36 +00:00
gettext.h Revert to GNU gettext.h and move MSVC defines to the vcproj. 2007-04-23 14:30:34 +00:00
input.c Do parts of the proposed changes in "[Warzone-dev] build issues in FreeBSD system" by Yaroslav Kolomiyets from 24.10.2006: 2007-11-24 11:49:51 +00:00
input.h Do parts of the proposed changes in "[Warzone-dev] build issues in FreeBSD system" by Yaroslav Kolomiyets from 24.10.2006: 2007-11-24 11:49:51 +00:00
listmacs.h Add GPL notices to all sourcecode files. 2007-01-15 20:09:25 +00:00
macros.h * Try to encapsulate knowledge about AUDIO_SAMPLE's internal representation in openal_track.c (i.e. don't use it in client code!) 2007-12-13 23:16:03 +00:00
printf_ext.c * In vasprintf when we have to produce a zero-length string: 2007-12-01 23:44:29 +00:00
printf_ext.h * Use WZ_DECL_FORMAT for some functions which take printf-like strings 2007-12-17 19:37:40 +00:00
resly.h Use Unix PATH_MAX as default and thus move all "fixes" to Windows. 2007-08-21 12:59:05 +00:00
resource_lexer.l Use full path to frame.h. Patch in bug #10208 by unknown. 2007-10-27 17:30:49 +00:00
resource_parser.y * Rename pLevelName to aLevelName (hungarian notation is a pain. Especially when it's wrong!) 2007-10-27 14:35:35 +00:00
strlfuncs.h * Add a doxygen comment to source:trunk/lib/framework/strlfuncs.h describing macro STR_L_FUNC_TRUNCATION_DETECT 2007-10-27 20:20:35 +00:00
strnlen1.c * Add network primitives by Freddie Witherden <EvilGuru> 2007-08-08 18:50:28 +00:00
strnlen1.h * Add Doxygen comments to lib/framework/strnlen1.h 2007-09-15 23:37:32 +00:00
strres.c * Get rid of a large quantity of unused parameters 2007-12-10 23:15:46 +00:00
strres.h * remove function stringLen and replace all instances where it was used with strlen (can't see why anyone would want a custom string length function there in the first place) 2007-08-05 12:06:56 +00:00
strres_lexer.l Use full path to frame.h. Patch in bug #10208 by unknown. 2007-10-27 17:30:49 +00:00
strres_parser.y Translate3.patch by Martin Koller. Had to Wiggle names.txt, but it seems to have cleanly applied. 2007-07-28 11:35:26 +00:00
strresly.h * remove function stringLen and replace all instances where it was used with strlen (can't see why anyone would want a custom string length function there in the first place) 2007-08-05 12:06:56 +00:00
tagfile.c Add methods to read/write byte arrays to tagfile format. 2007-12-10 21:48:27 +00:00
tagfile.h Add methods to read/write byte arrays to tagfile format. 2007-12-10 21:48:27 +00:00
treap.c * Get rid of a large quantity of unused parameters 2007-12-10 23:15:46 +00:00
treap.h * Get rid of a large quantity of unused parameters 2007-12-10 23:15:46 +00:00
treapint.h Add GPL notices to all sourcecode files. 2007-01-15 20:09:25 +00:00
trig.c Revert dodgy removal of trig functions. More testing required 2007-11-29 23:10:54 +00:00
trig.h Revert dodgy removal of trig functions. More testing required 2007-11-29 23:10:54 +00:00
types.h Do parts of the proposed changes in "[Warzone-dev] build issues in FreeBSD system" by Yaroslav Kolomiyets from 24.10.2006: 2007-11-24 11:49:51 +00:00
wzglobal.h * Guarantee that PATH_MAX is large enough to use as the size for Windows API calls (since with MinGW it is 159 bytes while it should be 160) 2007-12-23 16:44:36 +00:00