mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-29 20:03:33 +08:00
20 lines
821 B
C++
20 lines
821 B
C++
#include "stdafx.h"
|
|
#include "dbgexcept.h"
|
|
#include "diawrapper.h"
|
|
|
|
namespace pykd {
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
python::handle<> exceptPyType<python::detail::not_specified>::pyExceptType;
|
|
python::handle<> exceptPyType<DbgException>::pyExceptType;
|
|
python::handle<> exceptPyType<MemoryException>::pyExceptType;
|
|
python::handle<> exceptPyType<WaitEventException>::pyExceptType;
|
|
python::handle<> exceptPyType<SymbolException>::pyExceptType;
|
|
python::handle<> exceptPyType<pyDia::Exception>::pyExceptType;
|
|
python::handle<> exceptPyType<TypeException>::pyExceptType;
|
|
python::handle<> exceptPyType<AddSyntheticSymbolException>::pyExceptType;
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
}; // end namespace pykd
|