Begin cleanup of update functions

This commit is contained in:
jacksonmj
2011-01-09 19:23:05 +00:00
parent 56a3ad373c
commit 144e4bdb69
16 changed files with 257 additions and 186 deletions

View File

@@ -286,6 +286,7 @@ int update_WTRV(UPDATE_FUNC_ARGS);
int update_YEST(UPDATE_FUNC_ARGS);
int update_MISC(UPDATE_FUNC_ARGS);
int update_legacy_all(UPDATE_FUNC_ARGS);
struct particle
@@ -923,6 +924,12 @@ static void create_gain_photon(int pp);
void kill_part(int i);
#if defined(WIN32) && !defined(__GNUC__)
extern _inline void part_change_type(int n, int x, int y, int t);
#else
extern inline void part_change_type(int i, int x, int y, int t);
#endif
#if defined(WIN32) && !defined(__GNUC__)
extern _inline int create_part(int p, int x, int y, int t);
#else