]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Include/moduleobject.h
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Include / moduleobject.h
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Include/moduleobject.h b/AppPkg/Applications/Python/Python-2.7.2/Include/moduleobject.h
deleted file mode 100644 (file)
index ff16ad2..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-\r
-/* Module object interface */\r
-\r
-#ifndef Py_MODULEOBJECT_H\r
-#define Py_MODULEOBJECT_H\r
-#ifdef __cplusplus\r
-extern "C" {\r
-#endif\r
-\r
-PyAPI_DATA(PyTypeObject) PyModule_Type;\r
-\r
-#define PyModule_Check(op) PyObject_TypeCheck(op, &PyModule_Type)\r
-#define PyModule_CheckExact(op) (Py_TYPE(op) == &PyModule_Type)\r
-\r
-PyAPI_FUNC(PyObject *) PyModule_New(const char *);\r
-PyAPI_FUNC(PyObject *) PyModule_GetDict(PyObject *);\r
-PyAPI_FUNC(char *) PyModule_GetName(PyObject *);\r
-PyAPI_FUNC(char *) PyModule_GetFilename(PyObject *);\r
-PyAPI_FUNC(void) _PyModule_Clear(PyObject *);\r
-\r
-#ifdef __cplusplus\r
-}\r
-#endif\r
-#endif /* !Py_MODULEOBJECT_H */\r