Browse Subversion Repository
Contents of /Plugin/System.h
Parent Directory
| Revision Log
| 1 |
#pragma once |
| 2 |
|
| 3 |
////////////////////////////////////////////////////////////////////////// |
| 4 |
|
| 5 |
// Build type(1:Release, 2:Debug) |
| 6 |
#ifndef _DEBUG |
| 7 |
#define BUILD_TYPE WCS_BUILD_TYPE_RELEASE |
| 8 |
#else |
| 9 |
#define BUILD_TYPE WCS_BUILD_TYPE_DEBUG |
| 10 |
#endif // _DEBUG |
| 11 |
|
| 12 |
////////////////////////////////////////////////////////////////////////// |
| 13 |
// Plugin ID(0 - 65535) |
| 14 |
#define PLGINFO_ID 1000 |
| 15 |
// Plugin type |
| 16 |
#define PLGINFO_TYPE WCS_PLUGIN_TYPE_GRAPHICS |
| 17 |
// Version format(Major, Minor) |
| 18 |
#define PLGINFO_VERSION MAKEWORD(1, 0) |
| 19 |
// Thread timeout |
| 20 |
#define PLGINFO_TIMEOUT 5000 |
| 21 |
// Plugin text max length(512) |
| 22 |
#define PLGINFO_TEXT TEXT("Mandelbrot rendering plugin.") |
| 23 |
|
| 24 |
////////////////////////////////////////////////////////////////////////// |
| 25 |
|
| 26 |
#define CALC_WIDTH 1000 |
| 27 |
#define CALC_HEIGHT 750 |
| 28 |
#define CALC_RANGE 50 |
| 29 |
|
| 30 |
////////////////////////////////////////////////////////////////////////// |
|