コード例 #1
0
ファイル: Sections.cs プロジェクト: peace-maker/smxtools
 public SmxDebugNativesTable(FileHeader file, SectionEntry header, SmxNameTable names)
     : base(file, header)
 {
     entries_ = DebugNativesHeader.From(file.SectionReader(header), names);
 }
コード例 #2
0
ファイル: Sections.cs プロジェクト: peace-maker/smxtools
 public SmxDebugInfoSection(FileHeader file, SectionEntry header)
     : base(file, header)
 {
     info_ = DebugInfoHeader.From(file.SectionReader(header));
 }
コード例 #3
0
ファイル: Sections.cs プロジェクト: peace-maker/smxtools
 public SmxDebugLinesTable(FileHeader file, SectionEntry header)
     : base(file, header)
 {
     entries_ = DebugLineEntry.From(file.SectionReader(header), header);
 }
コード例 #4
0
ファイル: Sections.cs プロジェクト: peace-maker/smxtools
 public SmxDataSection(FileHeader file, SectionEntry header)
     : base(file, header)
 {
     dh_ = DataHeader.From(file.SectionReader(header));
 }
コード例 #5
0
ファイル: Sections.cs プロジェクト: peace-maker/smxtools
 public SmxCodeV1Section(FileHeader file, SectionEntry header)
     : base(file, header)
 {
     ch_ = CodeV1Header.From(file.SectionReader(header));
 }
コード例 #6
0
ファイル: Sections.cs プロジェクト: rom4s/sourcepawn
 public SmxDebugSymbolsTable(FileHeader file, SectionEntry header, SmxDebugInfoSection info, SmxNameTable names)
     : base(file, header)
 {
     entries_ = DebugSymbolEntry.From(file, file.SectionReader(header), info, names);
 }
コード例 #7
0
ファイル: Sections.cs プロジェクト: peace-maker/smxtools
 public SmxTagTable(FileHeader file, SectionEntry header, SmxNameTable names)
     : base(file, header)
 {
     var tags = TagEntry.From(file.SectionReader(header), header, names);
     tags_ = new Tag[tags.Length];
     for (var i = 0; i < tags.Length; i++)
         tags_[i] = new Tag(tags[i]);
 }
コード例 #8
0
ファイル: Sections.cs プロジェクト: Bara/sourcepawn-1
 public SmxDebugInfoSection(FileHeader file, SectionEntry header)
     : base(file, header)
 {
     info_ = DebugInfoHeader.From(file.SectionReader(header));
 }
コード例 #9
0
ファイル: Sections.cs プロジェクト: Bara/sourcepawn-1
 public SmxDebugFilesTable(FileHeader file, SectionEntry header, SmxNameTable names)
     : base(file, header)
 {
     entries_ = DebugFileEntry.From(file.SectionReader(header), header, names);
 }
コード例 #10
0
ファイル: Sections.cs プロジェクト: Bara/sourcepawn-1
 public SmxDataSection(FileHeader file, SectionEntry header)
     : base(file, header)
 {
     dh_ = DataHeader.From(file.SectionReader(header));
 }
コード例 #11
0
ファイル: Sections.cs プロジェクト: Bara/sourcepawn-1
 public SmxCodeV1Section(FileHeader file, SectionEntry header)
     : base(file, header)
 {
     ch_ = CodeV1Header.From(file.SectionReader(header));
 }
コード例 #12
0
ファイル: Sections.cs プロジェクト: Bara/sourcepawn-1
 public SmxPubvarTable(FileHeader file, SectionEntry header, SmxNameTable names)
     : base(file, header)
 {
     pubvars_ = PubvarEntry.From(file.SectionReader(header), header, names);
 }
コード例 #13
0
ファイル: Sections.cs プロジェクト: Bara/sourcepawn-1
 public SmxNativeTable(FileHeader file, SectionEntry header, SmxNameTable names)
     : base(file, header)
 {
     natives_ = NativeEntry.From(file.SectionReader(header), header, names);
 }
コード例 #14
0
 public SmxRttiListTable(FileHeader file, SectionEntry header, SmxNameTable names)
     : base(file, header)
 {
     var reader = file.SectionReader(header);
 }
コード例 #15
0
ファイル: Sections.cs プロジェクト: peace-maker/smxtools
 public SmxDebugSymbolsTable(FileHeader file, SectionEntry header, SmxDebugInfoSection info, SmxNameTable names)
     : base(file, header)
 {
     entries_ = DebugSymbolEntry.From(file, file.SectionReader(header), info, names);
 }
コード例 #16
0
ファイル: Sections.cs プロジェクト: peace-maker/smxtools
 public SmxPubvarTable(FileHeader file, SectionEntry header, SmxNameTable names)
     : base(file, header)
 {
     pubvars_ = PubvarEntry.From(file.SectionReader(header), header, names);
 }
コード例 #17
0
ファイル: Sections.cs プロジェクト: peace-maker/smxtools
 public SmxNativeTable(FileHeader file, SectionEntry header, SmxNameTable names)
     : base(file, header)
 {
     natives_ = NativeEntry.From(file.SectionReader(header), header, names);
 }
コード例 #18
0
ファイル: Sections.cs プロジェクト: rom4s/sourcepawn
 public SmxDebugLinesTable(FileHeader file, SectionEntry header)
     : base(file, header)
 {
     entries_ = DebugLineEntry.From(file.SectionReader(header), header);
 }