Changeset 170 for trunk/thune/win32

Show
Ignore:
Timestamp:
06/06/06 20:09:24 (3 years ago)
Author:
krobillard
Message:

Thune - pairpool.c now compiles on win32.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/win32/os.h

    r131 r170  
    1111#include <stdlib.h> 
    1212#include <string.h> 
     13 
     14 
     15#ifdef _MSC_VER 
     16#define inline  __inline 
     17#endif 
    1318 
    1419 
     
    3136#ifdef TRACK_MALLOC 
    3237void* memAlloc( size_t ); 
     38void* memRealloc( void*, size_t ); 
    3339void  memFree( void* ); 
    3440#else 
    3541#define memAlloc    malloc 
     42#define memRealloc  realloc 
    3643#define memFree     free 
    3744#endif 
     
    5966#endif 
    6067 
    61 int ur_fileSize( const char* path ); 
     68extern int  ur_fileSize( const char* path ); 
     69extern void ur_installExceptionHandlers(); 
    6270 
    6371#ifdef UR_CONFIG_EMH