00001
00002
00003
00004
00005
00006
00007
00008
00009
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00028
00029 #define YASA_GUI_INCLUDE
00030
00031
00033 #include <yasa/yasa_errors.h>
00034 #include <yasa/yasa_types.h>
00035 #include <yasagui/yasagui_customize.h>
00036
00037
00039 #ifndef INT64
00040 #ifdef WIN32
00041 #define INT64 __int64
00042 #else
00043 #define INT64 long long
00044 #endif
00045 #endif
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055 #ifndef YASA_TIME_INFINITY
00056 #ifdef WIN32
00057 #define YASA_TIME_INFINITY 0x7fffFfffFfffFfff
00058 #else
00059 #define YASA_TIME_INFINITY 0x7fffFfffFfffFfffLL
00060 #endif
00061 #endif
00062
00063
00065
00066 #define YG_MIN_PRIORITY 0
00067 #define YG_MAX_PRIORITY 256
00068 #define YG_MIN_CPU 0 // 0=not specified -> every cpu, otherwise number of cpu
00069 #define YG_MIN_NUMBER_OF_CPUS 1 // 0=not specified -> every cpu, otherwise number of cpu
00070 #define YG_DEFAULT_THREAD_CPU 1
00071 #define YG_DEFAULT_NUMBER_OF_CPUS 1 // number of cpu used in projects via default
00072 #define YG_MAX_CPU 32
00073 #define YG_MIN_TIMER_TICK 0 // 0=no timer tick
00074
00075
00076
00077 #endif // ifndef YASA_GUI_INCLUDE