This repository has been archived on 2022-06-27. You can view files and clone it, but cannot push or open issues or pull requests.
Xash3DArchive/public/baserc_api.h

24 lines
732 B
C

//=======================================================================
// Copyright XashXT Group 2008 ©
// baserc_api.h - xash resource library
//=======================================================================
#ifndef BASERC_API_H
#define BASERC_API_H
/*
==============================================================================
BASERC.DLL INTERFACE
just a resource package library
==============================================================================
*/
typedef struct baserc_exp_s
{
// interface validator
size_t api_size; // must matched with sizeof(baserc_exp_t)
byte *(*LoadFile)( const char *filename, fs_offset_t *size );
} baserc_exp_t;
#endif//BASERC_API_H