Develop and Download Open Source Software

Browse Subversion Repository

Contents of /Plugin/System.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 12 - (show annotations) (download) (as text)
Tue May 25 06:54:07 2010 UTC (14 years ago) by sho1get
File MIME type: text/x-chdr
File size: 897 byte(s)


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 //////////////////////////////////////////////////////////////////////////

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26