Changeset 705 for Daodan/src/Daodan.h


Ignore:
Timestamp:
Mar 19, 2013, 4:00:23 PM (12 years ago)
Author:
alloc
Message:

Daodan: DaodanGL fixes, intro/outro fixes, chinese=true by default

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Daodan/src/Daodan.h

    r692 r705  
    33
    44#include <windows.h>
     5#include <assert.h>
    56#include "stdint.h"
    67
    78#define ONICALL __fastcall
     9#define UUmType(t) typedef struct t t;
     10
     11#define DDmAssert(expr) assert(expr);
     12
     13typedef unsigned char UUtBool;
     14#define UUcTrue  ((UUtBool) 1)
     15#define UUcFalse ((UUtBool) 0)
     16
     17typedef unsigned short UUtError;
     18#define UUcError_None ((UUtError) 0)
    819
    920extern HMODULE DDrDLLModule;
     
    1223extern bool opt_border;
    1324extern bool opt_topmost;
     25extern bool opt_gamma;
    1426
    1527#endif
Note: See TracChangeset for help on using the changeset viewer.