mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
20 lines
312 B
C
20 lines
312 B
C
#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
|