shithub: rgbds

ref: b7ca2e2b871e1790b6c13c312b1c19e453e13d6d
dir: /include/lib/libwrap.h/

View raw version
#ifndef ASMOTOR_LIB_LIBWRAP_H
#define ASMOTOR_LIB_LIBWRAP_H

#include "lib/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