// DLX Loader V1.0 // Copyright (c) 1997, Nanosoft, Inc. #ifndef __DLX_LOADER_ #define __DLX_LOADER_ #include #ifndef __cplusplus extern "C++" { #endif extern FILE* (*DLXOpenFile)(char*); extern void (*DLXError)(char*); void DLXLoad(char* name); void DLXUnload(char* name); void DLXImport(char* name, char** symbols); #ifndef __cplusplus } #endif #endif