Subversion Repositories Games.Carmageddon

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #include "hostcfg.h"
  2. #include "harness/trace.h"
  3.  
  4. // IDA: char* __cdecl HostDefaultDevice()
  5. char* HostDefaultDevice(void) {
  6.     LOG_TRACE("()");
  7.     NOT_IMPLEMENTED();
  8. }
  9.  
  10. // IDA: br_boolean __cdecl HostIniSectionExists(char *ini_file, char *section_name)
  11. br_boolean HostIniSectionExists(char* ini_file, char* section_name) {
  12.     LOG_TRACE("(\"%s\", \"%s\")", ini_file, section_name);
  13.     NOT_IMPLEMENTED();
  14. }
  15.  
  16. // IDA: br_error __cdecl HostIniQuery(char *ini_file, char *section_name, char *entry, char *Buffer, int max, br_uint_16 *size)
  17. br_error HostIniQuery(char* ini_file, char* section_name, char* entry, char* Buffer, int max, br_uint_16* size) {
  18.     LOG_TRACE("(\"%s\", \"%s\", \"%s\", \"%s\", %d, %p)", ini_file, section_name, entry, Buffer, max, size);
  19.     NOT_IMPLEMENTED();
  20. }
  21.  
  22. // IDA: br_error __cdecl HostRegistryQuery(void *hKey, char *Path, char *entry, char *Buffer, br_uint_16 max, br_uint_16 *size)
  23. br_error HostRegistryQuery(void* hKey, char* Path, char* entry, char* Buffer, br_uint_16 max, br_uint_16* size) {
  24.     LOG_TRACE("(%p, \"%s\", \"%s\", \"%s\", %d, %p)", hKey, Path, entry, Buffer, max, size);
  25.     NOT_IMPLEMENTED();
  26. }
  27.