Fix compilation of python modules on windows and rename generated files

This commit is contained in:
baldurk
2017-12-15 12:48:26 +00:00
parent 1a6db595a0
commit cc442b7aee
4 changed files with 38 additions and 8 deletions
@@ -26,6 +26,16 @@
#include "renderdoc_replay.h"
template <>
std::string DoStringise(const uint32_t &el)
{
static char tmp[16];
memset(tmp, 0, sizeof(tmp));
return itoa(el, tmp, 10);
}
#include "renderdoc_tostr.inl"
extern "C" PyThreadState *GetExecutingThreadState(PyObject *global_handle)
{
return NULL;