[server] Add SQLite natives as stubs

This commit is contained in:
RD42 2024-04-07 22:27:16 +08:00
parent 3fde3eda6d
commit b7d73e3154
2 changed files with 193 additions and 0 deletions

View File

@ -154,6 +154,13 @@
<File
RelativePath=".\amx\osdefs.h">
</File>
<Filter
Name="sqlite"
Filter="">
<File
RelativePath=".\sqlite\sqlite_amx.cpp">
</File>
</Filter>
</Filter>
<Filter
Name="raknet"

View File

@ -0,0 +1,186 @@
#include <stdio.h>
#include <malloc.h>
#include <string.h>
#include "../amx/amx.h"
// native DB:db_open(name[]);
static cell AMX_NATIVE_CALL n_open(AMX* amx, cell* params)
{
// TODO: n_open
}
// native db_close(DB:db);
static cell AMX_NATIVE_CALL n_close(AMX* amx, cell* params)
{
// TODO: n_close
return 0;
}
// native DBResult:db_query(DB:db, query[]);
static cell AMX_NATIVE_CALL n_query(AMX* amx, cell* params)
{
// TODO: n_query
return 0;
}
// native db_free_result(DBResult:dbresult);
static cell AMX_NATIVE_CALL n_free_result(AMX* amx, cell* params)
{
// TODO: n_free_result
return 0;
}
// native db_num_rows(DBResult:dbresult);
static cell AMX_NATIVE_CALL n_num_rows(AMX* amx, cell* params)
{
// TODO: n_num_rows
return 0;
}
// native db_next_row(DBResult:dbresult);
static cell AMX_NATIVE_CALL n_next_row(AMX* amx, cell* params)
{
// TODO: n_next_row
return 0;
}
// native db_num_fields(DBResult:dbresult);
static cell AMX_NATIVE_CALL n_num_fields(AMX* amx, cell* params)
{
// TODO: n_num_fields
return 0;
}
// native db_field_name(DBResult:dbresult, field, result[], maxlength);
static cell AMX_NATIVE_CALL n_field_name(AMX* amx, cell* params)
{
// TODO: n_field_name
return 0;
}
// native db_get_field(DBResult:dbresult, field, result[], maxlength);
static cell AMX_NATIVE_CALL n_get_field(AMX* amx, cell* params)
{
// TODO: n_get_field
return 0;
}
// native db_get_field_int(DBResult:result, field);
static cell AMX_NATIVE_CALL n_get_field_int(AMX* amx, cell* params)
{
// TODO: n_get_field_int
return 0;
}
// native Float:db_get_field_float(DBResult:result, field);
static cell AMX_NATIVE_CALL n_get_field_float(AMX* amx, cell* params)
{
// TODO: n_get_field_float
return 0;
}
// native db_get_field_assoc(DBResult:dbresult, const field[], result[], maxlength);
static cell AMX_NATIVE_CALL n_get_field_assoc(AMX* amx, cell* params)
{
// TODO: n_get_field_assoc
return 0;
}
// native db_get_field_assoc_int(DBResult:result, const field[]);
static cell AMX_NATIVE_CALL n_get_field_assoc_int(AMX* amx, cell* params)
{
// TODO: n_get_field_assoc_int
return 0;
}
// native Float:db_get_field_assoc_float(DBResult:result, const field[]);
static cell AMX_NATIVE_CALL n_get_field_assoc_float(AMX* amx, cell* params)
{
// TODO: n_get_field_assoc_float
return 0;
}
// native db_debug_openfiles();
static cell AMX_NATIVE_CALL n_debug_openfiles(AMX* amx, cell* params)
{
// TODO: n_debug_openfiles
return 0;
}
// native db_debug_openresults();
static cell AMX_NATIVE_CALL n_debug_openresults(AMX* amx, cell* params)
{
// TODO: n_debug_openresults
return 0;
}
// native db_get_mem_handle(DB:db);
static cell AMX_NATIVE_CALL n_get_mem_handle(AMX* amx, cell* params)
{
// TODO: n_get_mem_handle
return 0;
}
// native db_get_result_mem_handle(DBResult:result);
static cell AMX_NATIVE_CALL n_get_result_mem_handle(AMX* amx, cell* params)
{
// TODO: n_get_result_mem_handle
return 0;
}
/*
native DB:db_open(name[]);
native db_close(DB:db);
native DBResult:db_query(DB:db, query[]);
native db_free_result(DBResult:dbresult);
native db_num_rows(DBResult:dbresult);
native db_next_row(DBResult:dbresult);
native db_num_fields(DBResult:dbresult);
native db_field_name(DBResult:dbresult, field, result[], maxlength);
native db_get_field(DBResult:dbresult, field, result[], maxlength);
native db_get_field_int(DBResult:result, field = 0);
native Float:db_get_field_float(DBResult:result, field = 0);
native db_get_field_assoc(DBResult:dbresult, const field[], result[], maxlength);
native db_get_field_assoc_int(DBResult:result, const field[]);
native Float:db_get_field_assoc_float(DBResult:result, const field[]);
native db_get_mem_handle(DB:db);
native db_get_result_mem_handle(DBResult:result);
native db_debug_openfiles();
native db_debug_openresults();
*/
#if defined __cplusplus
extern "C"
#endif
AMX_NATIVE_INFO sampDb_Natives[] = {
{ "db_open", n_open },
{ "db_close", n_close },
{ "db_query", n_query },
{ "db_free_result", n_free_result },
{ "db_num_rows", n_num_rows },
{ "db_next_row", n_next_row },
{ "db_num_fields", n_num_fields },
{ "db_field_name", n_field_name },
{ "db_get_field", n_get_field },
{ "db_get_field_int", n_get_field_int },
{ "db_get_field_float", n_get_field_float },
{ "db_get_field_assoc", n_get_field_assoc },
{ "db_get_field_assoc_int", n_get_field_assoc_int },
{ "db_get_field_assoc_float", n_get_field_assoc_float },
{ "db_debug_openfiles", n_debug_openfiles },
{ "db_debug_openresults", n_debug_openresults },
{ "db_get_mem_handle", n_get_mem_handle },
{ "db_get_result_mem_handle", n_get_result_mem_handle },
{ NULL, NULL } /* terminator */
};
int AMXEXPORT amx_sampDbInit(AMX *amx)
{
return amx_Register(amx, sampDb_Natives, -1);
}
int AMXEXPORT amx_sampDbCleanup(AMX *amx)
{
return AMX_ERR_NONE;
}