Line | |
---|
1 | #pragma once
|
---|
2 |
|
---|
3 | class ObjectModule : public Jenga::Common::BoostSerializationSupport<ObjectModule>
|
---|
4 | {
|
---|
5 | public:
|
---|
6 | // メタ情報
|
---|
7 | Meta meta;
|
---|
8 |
|
---|
9 | // グローバル領域のネイティブコード
|
---|
10 | NativeCode globalNativeCode;
|
---|
11 |
|
---|
12 | // データテーブル
|
---|
13 | DataTable dataTable;
|
---|
14 |
|
---|
15 | // XMLシリアライズ用
|
---|
16 | private:
|
---|
17 | virtual const char *RootTagName() const
|
---|
18 | {
|
---|
19 | return "objectModule";
|
---|
20 | }
|
---|
21 | friend class boost::serialization::access;
|
---|
22 | template<class Archive> void serialize(Archive& ar, const unsigned int version)
|
---|
23 | {
|
---|
24 | trace_for_serialize( "serializing - objectModule" );
|
---|
25 |
|
---|
26 | ar & BOOST_SERIALIZATION_NVP( meta );
|
---|
27 | ar & BOOST_SERIALIZATION_NVP( globalNativeCode );
|
---|
28 | ar & BOOST_SERIALIZATION_NVP( dataTable );
|
---|
29 | }
|
---|
30 | };
|
---|
31 |
|
---|
32 | class Linker
|
---|
33 | {
|
---|
34 | // データテーブルスケジュール
|
---|
35 | void ResolveDataTableSchedules( long dataSectionBaseOffset );
|
---|
36 |
|
---|
37 | // DLL関数スケジュール
|
---|
38 | void ResolveDllProcSchedules( long codeSectionBaseOffset, long importSectionBaseOffset );
|
---|
39 |
|
---|
40 | // ユーザ定義関数スケジュール
|
---|
41 | void ResolveUserProcSchedules( long codeSectionBaseOffset );
|
---|
42 |
|
---|
43 | // グローバル変数スケジュール
|
---|
44 | void ResolveGlobalVarSchedules( long rwSectionBaseOffset );
|
---|
45 |
|
---|
46 | NativeCode nativeCode;
|
---|
47 |
|
---|
48 | DWORD imageBase;
|
---|
49 |
|
---|
50 | public:
|
---|
51 | Linker()
|
---|
52 | {
|
---|
53 | }
|
---|
54 |
|
---|
55 | void SetImageBase( DWORD imageBase )
|
---|
56 | {
|
---|
57 | this->imageBase = imageBase;
|
---|
58 | }
|
---|
59 |
|
---|
60 | // リンク
|
---|
61 | void Link( vector<ObjectModule *> &objectModules );
|
---|
62 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.