ref: 74eea59208bc84482638e2f9a0f14eca6158a5fe
dir: /include/lib/libwrap.h/
#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