Browse Subversion Repository
Annotation of /Plugin/System.h
Parent Directory
| Revision Log
Revision 12 -
( hide annotations)
( download)
( as text)
Tue May 25 06:54:07 2010 UTC
(13 years, 9 months ago)
by sho1get
File MIME type: text/x-chdr
File size: 897 byte(s)
| 1 |
sho1get |
11 |
#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 |
sho1get |
12 |
#define CALC_WIDTH 1000 |
| 27 |
sho1get |
11 |
#define CALC_HEIGHT 750 |
| 28 |
|
|
#define CALC_RANGE 50 |
| 29 |
|
|
|
| 30 |
|
|
////////////////////////////////////////////////////////////////////////// |
|