14 lines
282 B
C
14 lines
282 B
C
#ifndef __DEFINES_H
|
|
#define __DEFINES_H
|
|
#ifdef DEBUG
|
|
#define __BUILDTYPE__ "Debug"
|
|
#define THREADSPB 1
|
|
#define THDIVTHPB 1
|
|
#define WHCOND x < 0xFFFFFFFF
|
|
#else
|
|
#define __BUILDTYPE__ "Release"
|
|
#define THREADSPB 256
|
|
#define THDIVTHPB (tTh / THREADSPB)
|
|
#define WHCOND true
|
|
#endif
|
|
#endif |