00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #include "formats.h"
00022
00023 #include "htdebug.h"
00024
00025 #include "class.h"
00026 #include "hthex.h"
00027 #include "httext.h"
00028 #include "htdisasm.h"
00029 #include "htfinfo.h"
00030 #include "htelf.h"
00031 #include "htcoff.h"
00032 #include "htle.h"
00033 #include "htmacho.h"
00034 #include "htmz.h"
00035 #include "htne.h"
00036 #include "htpe.h"
00037 #include "htpef.h"
00038 #include "htflt.h"
00039 #include "htxbe.h"
00040
00041 format_viewer_if *format_viewer_ifs[] =
00042 {
00043 &hthex_if,
00044 &httext_if,
00045 &htdisasm_if,
00046 &htfinfo_if,
00047 &htelf_if,
00048 &htmz_if,
00049 &htcls_if,
00050 &htcoff_if,
00051 &htpe_if,
00052 &htne_if,
00053 &htle_if,
00054 &htmacho_if,
00055 &htflt_if,
00056 &htxbe_if,
00057 &htpef_if,
00058 NULL
00059 };