source: dev/trunk/ab5.0/abdev/ab_common/include/Environment.h@ 829

Last change on this file since 829 was 829, checked in by イグトランス (egtra), 12 years ago

svn:eol-styleとsvn:mime-type(文字コード指定含む)の設定

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain; charset=Shift_JIS
File size: 988 bytes
Line 
1#pragma once
2
3namespace ActiveBasic{ namespace Common{
4
5
6struct Platform
7{
8 enum EnumType
9 {
10 X86,
11 X64,
12 };
13};
14
15// ターゲット
16struct TargetModuleType
17{
18 enum EnumType
19 {
20 Exe = 0,
21 Dll,
22 Sll,
23 };
24};
25
26class Environment
27{
28 static std::string rootPath;
29 static bool isRemoveExternal;
30public:
31 static void SetAbdevRootPath( const std::string &rootPath );
32
33 static const std::string GetAbdevRootPath();
34
35 static const std::string GetUserAppDir();
36
37 static const std::string GetAbdevSystemDirPath()
38 {
39 return GetAbdevRootPath() + "\\system";
40 }
41
42 static const std::string GetCompilerExePath( Platform::EnumType platform );
43
44 static bool IsRemoveExternal()
45 {
46 return isRemoveExternal;
47 }
48 static void SetRemoveExternalMark( bool isRemoveExternalMark )
49 {
50 Environment::isRemoveExternal = isRemoveExternalMark;
51 }
52
53private:
54 Environment();
55 Environment(Environment const&);
56 Environment& operator =(Environment const&);
57 ~Environment();
58};
59
60BOOL EnableNX();
61void SetHeapOptions();
62
63}}
Note: See TracBrowser for help on using the repository browser.