eea576cb52
Added format errors Paused plugins now have their forwards blocked Fixed bug where pausing a plugin wouldnt make any effect --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40293
19 lines
482 B
C++
19 lines
482 B
C++
#ifndef _INCLUDE_SOURCEMOD_CDBGREPORTER_H_
|
|
#define _INCLUDE_SOURCEMOD_CDBGREPORTER_H_
|
|
|
|
#include "sp_vm_api.h"
|
|
#include "sm_globals.h"
|
|
|
|
class CDbgReporter :
|
|
public SMGlobalClass,
|
|
public IDebugListener
|
|
{
|
|
public: // SMGlobalClass
|
|
void OnSourceModAllInitialized();
|
|
public: // IDebugListener
|
|
void OnContextExecuteError(IPluginContext *ctx, IContextTrace *error);
|
|
private:
|
|
int _GetPluginIndex(IPluginContext *ctx);
|
|
};
|
|
|
|
#endif // _INCLUDE_SOURCEMOD_CDBGREPORTER_H_
|