ref: 8a7adf4c3b0fc70c05f44b2d429cfe2dd4cd5428
dir: /src/lib/include/libwrap.h/
#ifndef LIBWRAP_H
#define LIBWRAP_H
#include "types.h"
#define MAXNAMELENGTH 256
struct LibraryWrapper
{
char tName[MAXNAMELENGTH];
UWORD uwTime;
UWORD uwDate;
SLONG nByteLength;
UBYTE *pData;
struct LibraryWrapper *pNext;
};
typedef struct LibraryWrapper sLibrary;
#endif