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.
11 lines
167 B
C++
11 lines
167 B
C++
#ifndef _INCLUDE_NATIVES_H_
|
|
#define _INCLUDE_NATIVES_H_
|
|
|
|
|
|
namespace natives
|
|
{
|
|
void SetupNatives(std::vector<sp_nativeinfo_t>& vec);
|
|
}
|
|
|
|
#endif // !_INCLUDE_NATIVES_H_
|