Few more files compile.
This commit is contained in:
parent
936a5198e4
commit
8b4a564235
9 changed files with 52 additions and 31 deletions
|
@ -70,7 +70,7 @@
|
|||
/* I N C L U D E D S ************************************************** */
|
||||
#include "advwin32.h"
|
||||
#ifndef DB_NOWINDOWS
|
||||
#include <windows.h>
|
||||
// #include <windows.h>
|
||||
#include "advwin32.h"
|
||||
#endif
|
||||
|
||||
|
@ -292,6 +292,8 @@ struct db_dd_mode_tag
|
|||
/* Don't prototype anything or declare globals if NDEBUG is defined. */
|
||||
#ifndef NDEBUG
|
||||
|
||||
#define __cdecl
|
||||
|
||||
/* New formatted debugging fns. */
|
||||
extern void __cdecl db_logf_fired(const char *fmtStrP, ...);
|
||||
extern void __cdecl db_printf_fired(int x, int y, const char *fmtStrP, ...);
|
||||
|
|
|
@ -1,6 +1,15 @@
|
|||
#ifndef INLINE_INCLUDED
|
||||
#define INLINE_INCLUDED
|
||||
|
||||
#ifndef min
|
||||
#define min(a, b) (((a) < (b)) ? (a) : (b))
|
||||
#endif
|
||||
|
||||
#ifndef max
|
||||
#define max(a, b) (((a) > (b)) ? (a) : (b))
|
||||
#endif
|
||||
|
||||
|
||||
#if SUPPORT_MMX
|
||||
#include "mmx_math.h"
|
||||
#endif
|
||||
|
|
|
@ -25,12 +25,15 @@ extern "C" {
|
|||
|
||||
#define Hardware2dTextureClipping No
|
||||
|
||||
#ifndef min
|
||||
#define min(a, b) (((a) < (b)) ? (a) : (b))
|
||||
#endif
|
||||
|
||||
/*
|
||||
#ifndef max
|
||||
#define max(a, b) (((a) > (b)) ? (a) : (b))
|
||||
#endif
|
||||
|
||||
Types
|
||||
|
||||
*/
|
||||
/* Types */
|
||||
|
||||
typedef int BOOL;
|
||||
|
||||
|
@ -56,6 +59,19 @@ typedef struct LONGLONGCH {
|
|||
} LONGLONGCH;
|
||||
|
||||
|
||||
typedef int FILETIME;
|
||||
|
||||
typedef struct SYSTEMTIME
|
||||
{
|
||||
//#warning "SYSTEMTIME format is not correct"
|
||||
int wHour;
|
||||
int wMinute;
|
||||
int wSecond;
|
||||
int wYear;
|
||||
int wMonth;
|
||||
int wDay;
|
||||
} SYSTEMTIME;
|
||||
|
||||
/*
|
||||
|
||||
Sine and Cosine
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue