mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-26 14:55:36 +03:00
78956f3d89
removed amxmod compat files for now
12 lines
405 B
C++
12 lines
405 B
C++
#ifndef _INCLUDE_FORMATTING_H
|
|
#define _INCLUDE_FORMATTING_H
|
|
|
|
//Amx Templatized Cell Printf
|
|
template <typename D, typename S>
|
|
size_t atcprintf(D *buffer, size_t maxlen, const S *format, AMX *amx, cell *params, int *param);
|
|
|
|
const char *translate(AMX *amx, cell amxaddr, const char *key);
|
|
bool translate_bcompat(AMX *amx, cell *source, const char **_key, const char **_def);
|
|
|
|
#endif //_INCLUDE_FORMATTING_H
|