mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
20 lines
307 B
C
20 lines
307 B
C
#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 |