mirror of
https://github.com/asherkin/accelerator.git
synced 2025-12-06 18:08:30 +00:00
Forward notifies plugins when the extension is done uploading. Plugins can fetch data from uploaded crashes via natives. Added example plugin.
16 lines
266 B
C++
16 lines
266 B
C++
#ifndef _INCLUDE_FORWARDS_H_
|
|
#define _INCLUDE_FORWARDS_H_
|
|
|
|
namespace extforwards
|
|
{
|
|
// Initialize the sourcepawn forwards.
|
|
void Init();
|
|
// Shutdown the sourcepawn forwards.
|
|
void Shutdown();
|
|
void CallOnDoneUploadingForward();
|
|
}
|
|
|
|
|
|
|
|
#endif // !_INCLUDE_FORWARDS_H_
|