Subversion Repositories Games.Carmageddon

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
20 pmbaty 1
#include "hstsetup.h"
2
#include "harness/trace.h"
3
 
4
host_info hostInfo;
5
void* functionPointers_BRHOST1[50];
6
br_image Image_BRHOST1;
7
char* namePointers_BRHOST1[50];
8
br_uint_16 nameOrdinals_BRHOST1[50];
9
 
10
// IDA: void __cdecl HostBegin()
11
void HostBegin(void) {
12
    LOG_TRACE("()");
13
    NOT_IMPLEMENTED();
14
}
15
 
16
// IDA: void __cdecl HostEnd()
17
void HostEnd(void) {
18
    LOG_TRACE("()");
19
    NOT_IMPLEMENTED();
20
}
21
 
22
// IDA: br_error __cdecl HostInfo(host_info *buffer, br_size_t buffersize)
23
br_error HostInfo(host_info* buffer, br_size_t buffersize) {
24
    //br_int_32 features; // Pierre-Marie Baty -- unused variable
25
    LOG_TRACE("(%p, %d)", buffer, buffersize);
26
    NOT_IMPLEMENTED();
27
}