mirror of
https://github.com/asherkin/accelerator.git
synced 2025-12-07 10:28:29 +00:00
commit c7efce2d6722b08e2ea719ce1a39f80747502f77
Author: caxanga334 <10157643+caxanga334@users.noreply.github.com>
Date: Sat Nov 22 22:35:24 2025 -0300
Fix Error
commit e8acf9f505aa26b007c5837d4075f649099f43c3
Author: caxanga334 <10157643+caxanga334@users.noreply.github.com>
Date: Sat Nov 22 22:23:57 2025 -0300
Fix Possible Memory Leak
commit 51e718922726c074c0e7a45f9d13c6a51e4b97eb
Author: caxanga334 <10157643+caxanga334@users.noreply.github.com>
Date: Sat Nov 22 22:13:55 2025 -0300
Add Upload Forward
37 lines
711 B
SourcePawn
37 lines
711 B
SourcePawn
/**
|
|
* Accelerator's SourcePawn include file
|
|
*/
|
|
|
|
#if defined _accelerator_included
|
|
#endinput
|
|
#endif
|
|
#define _accelerator_included
|
|
|
|
|
|
/**
|
|
* Called a crash dump is uploaded.
|
|
*
|
|
* @param index Index of the crash.
|
|
* @param response HTTP response in plain text.
|
|
* @param responsesize HTTP response char buffer size.
|
|
*/
|
|
forward void Accelerator_OnCrashUploaded(int index, const char[] response, int responsesize);
|
|
|
|
/**
|
|
* Do not edit below this line!
|
|
*/
|
|
public Extension __ext_accelerator =
|
|
{
|
|
name = "accelerator",
|
|
file = "accelerator.ext",
|
|
#if defined AUTOLOAD_EXTENSIONS
|
|
autoload = 1,
|
|
#else
|
|
autoload = 0,
|
|
#endif
|
|
#if defined REQUIRE_EXTENSIONS
|
|
required = 1,
|
|
#else
|
|
required = 0,
|
|
#endif
|
|
}; |