00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef __HTPEIL_H__
00022 #define __HTPEIL_H__
00023
00024 #include "common.h"
00025 #include "formats.h"
00026 #include "htdata.h"
00027 #include "ilstruct.h"
00028
00029 extern format_viewer_if htpeil_if;
00030
00031 class ht_il_metadata_entry: public Object {
00032 public:
00033 char *name;
00034 dword offset;
00035 dword size;
00036 ht_il_metadata_entry(char *name, dword offset, dword size);
00037 ~ht_il_metadata_entry();
00038 };
00039
00040 class ht_pe_il: public Object {
00041 public:
00042 PE_IL_DIRECTORY dir;
00043 IL_METADATA_SECTION metadata;
00044 ht_clist *entries;
00045 dword string_pool_size;
00046 char *string_pool;
00047 };
00048
00049
00050
00051
00052
00053 class ht_pe_il_viewer: public ht_uformat_viewer {
00054 public:
00055 void init(bounds *b, char *desc, int caps, ht_streamfile *file, ht_format_group *group);
00056 virtual void done();
00057 };
00058
00059 int ILunpackDword(dword &result, const byte *buf, int len);
00060 int ILunpackToken(dword &result, const byte *buf, int len);
00061
00062 #endif