mirror of
https://github.com/djhackersdev/bemanitools.git
synced 2026-09-16 12:25:09 -05:00
Use this to share helpers or other extensions to the original avs API across modules. Start with including error codes to readable strings to improve velocity on AVS API error analysis.
8 lines
133 B
C
8 lines
133 B
C
#ifndef AVS_UTIL_ERROR_H
|
|
#define AVS_UTIL_ERROR_H
|
|
|
|
#include "imports/avs.h"
|
|
|
|
const char *avs_util_error_str(avs_error error);
|
|
|
|
#endif |