Changeset 266 in dev for trunk/abdev/BasicCompiler_Common/PESchedule.cpp
- Timestamp:
- Aug 7, 2007, 4:14:06 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/PESchedule.cpp
r253 r266 1 1 #include "stdafx.h" 2 3 #include <Compiler.h> 2 4 3 5 #include "../BasicCompiler_Common/common.h" … … 55 57 56 58 void CReloc::AddSchedule_CodeSection(DWORD addr){ 57 extern BOOL bDll; 58 if(!bDll) return; 59 if( !compiler.IsDll() ) return; 59 60 60 61 codeSectionAddresses.push_back( addr ); 61 62 } 62 63 void CReloc::AddSchedule_DataSection(DWORD addr){ 63 extern BOOL bDll; 64 if(!bDll) return; 64 if( !compiler.IsDll() ) return; 65 65 66 66 dataSectionAddresses.push_back( addr ); … … 68 68 69 69 void CReloc::__add(DWORD addr){ 70 extern BOOL bDll; 71 if(!bDll) return; 70 if( !compiler.IsDll() ) return; 72 71 73 72 BOOL sw;
Note:
See TracChangeset
for help on using the changeset viewer.