Changeset 303 for trunk/Include/basic.sbp
- Timestamp:
- Aug 24, 2007, 11:14:46 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Include/basic.sbp
r300 r303 1 1 'basic.sbp 2 3 #_core4 2 5 3 ' Unicodeが不安定な間の暫定対応 … … 9 7 #ifndef _INC_BASIC 10 8 #define _INC_BASIC 11 12 9 13 10 Sub _System_InitDllGlobalVariables() 'dummy … … 54 51 TypeDef Int16 = Integer 55 52 TypeDef Int8 = SByte 56 57 TypeDef BOOL = Long58 53 59 54 ' Boolena型の定数 … … 122 117 ' Specify elements number 123 118 '-------------------------- 124 Const ELM(n) = ( n- 1)119 Const ELM(n) = ((n) - 1) 125 120 126 #include <windows.sbp> 127 #include <crt.sbp> 128 #include <objbase.sbp> 121 #require <windows.sbp> 122 #require <crt.sbp> 129 123 130 124 … … 138 132 Sub _System_StartupProgram() 139 133 'Unsafe 134 140 135 'この関数はアプリケーションの起動時にシステムからコールバックされます 141 136 … … 150 145 ActiveBasic.Core._System_TypeBase.Initialize() 151 146 152 ' 147 'Initialize static variables 153 148 _System_InitStaticLocalVariables() 154 149 … … 168 163 ' GC管理オブジェクトを破棄 169 164 _System_pGC->Finish() 170 _System_free( _System_pGC )165 ' _System_free( _System_pGC ) 171 166 172 167 DeleteCriticalSection(_System_CriticalSection) … … 178 173 179 174 180 #include <system\interface.ab>181 #include <system\built_in.ab>182 #include <system\string.sbp>183 #include <system\debug.sbp>184 #include <system\gc.sbp>185 #include <system\enum.sbp>186 #include <system\exception.ab>187 175 188 #include <Classes\index.ab> 176 #require <system\string.sbp> 177 #require <system\debug.sbp> 178 #require <system\gc.sbp> 179 #require <system\enum.sbp> 180 #require <system\exception.ab> 181 182 #require <Classes\index.ab> 189 183 190 184 191 # include <basic\function.sbp>192 # include <basic\command.sbp>185 #require <basic\function.sbp> 186 #require <basic\command.sbp> 193 187 194 188
Note:
See TracChangeset
for help on using the changeset viewer.