/* $Id: APIImport.h,v 1.4 2002-02-24 02:58:27 bird Exp $ */ /* * APIImportPE - imports a DLL with functions into the Odin32 database. Header. * * Copyright (c) 1999 knut st. osmundsen * */ #ifndef _APIImport_h_ #define _APIImport_h_ /****************************************************************************** * Defined Constants * ******************************************************************************/ #define MAJOR_VER 0 #define MINOR_VER 5 /****************************************************************************** * Structures and Typedefs * ******************************************************************************/ typedef struct _options { KBOOL fIgnoreOrdinals; /* Don't update ordinals. */ KBOOL fErase; /* Erase functions which wasn't found. */ } OPTIONS, *POPTIONS; #endif