Changeset 266 in dev for trunk/abdev/BasicCompiler32/Compile_ProcOp.cpp
- Timestamp:
- Aug 7, 2007, 4:14:06 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/Compile_ProcOp.cpp
r265 r266 28 28 //////////////////////////////////////// 29 29 30 extern BOOL bDll; 31 if(!bDll){ 30 if( !compiler.IsDll() ){ 32 31 //ret 33 32 compiler.codeGenerator.op_ret(); … … 757 756 } 758 757 void CompileLocal(){ 759 extern BOOL bDll; 760 if(bDll){ 758 if( compiler.IsDll() ){ 761 759 //DLLの場合はグローバル変数を初期化するための関数を一番初めにコンパイルする 762 760 const UserProc *pUserProc=GetSubHash("_System_InitDllGlobalVariables");
Note:
See TracChangeset
for help on using the changeset viewer.