Added a framework for the win16/ne format, so that it's easier for someone

to actually contribute that.

committer: mfx <mfx> 978183080 +0000
This commit is contained in:
Markus F.X.J. Oberhumer
2000-12-30 13:31:20 +00:00
parent c0bbc2216e
commit f36feee0dc
6 changed files with 206 additions and 4 deletions
+3
View File
@@ -46,6 +46,7 @@
#include "p_wcle.h"
#include "p_tmt.h"
#include "p_vxd.h"
#include "p_w16ne.h"
#include "p_w32pe.h"
#include "p_vmlinz.h"
@@ -162,6 +163,8 @@ static Packer* try_packers(InputFile *f, try_function func)
if ((p = func(new PackVxd(f),f)) != NULL)
return p;
#endif
if ((p = func(new PackW16Ne(f),f)) != NULL)
return p;
if ((p = func(new PackW32Pe(f),f)) != NULL)
return p;
}