mirror of
https://github.com/Team-Resurgent/xbmc4xbox-redux.git
synced 2026-08-15 20:18:49 -07:00
13 lines
130 B
C
Executable File
13 lines
130 B
C
Executable File
|
|
#include "Python.h"
|
|
|
|
#ifndef PLATFORM
|
|
#define PLATFORM "unknown"
|
|
#endif
|
|
|
|
const char *
|
|
Py_GetPlatform(void)
|
|
{
|
|
return PLATFORM;
|
|
}
|