Subversion Repositories Games.Carmageddon

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
20 pmbaty 1
#ifndef _HIMAGE_H_
2
#define _HIMAGE_H_
3
 
4
#include "brender/br_types.h"
5
 
6
void* HostImageLoad(char* name);
7
 
8
void HostImageUnload(void* image);
9
 
10
void* HostImageLookupName(void* img, char* name, br_uint_32 hint);
11
 
12
void* HostImageLookupOrdinal(void* img, br_uint_32 ordinal);
13
 
14
#endif