Develop and Download Open Source Software

Browse Subversion Repository

Annotation of /Plugin/System.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 11 - (hide annotations) (download) (as text)
Wed Feb 10 18:21:00 2010 UTC (14 years 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     #define CALC_WIDTH 1250
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