summaryrefslogtreecommitdiffstats
path: root/AppPkg/Applications/Python/Python-2.7.2/Include/pygetopt.h
diff options
context:
space:
mode:
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.2/Include/pygetopt.h')
-rw-r--r--AppPkg/Applications/Python/Python-2.7.2/Include/pygetopt.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Include/pygetopt.h b/AppPkg/Applications/Python/Python-2.7.2/Include/pygetopt.h
new file mode 100644
index 0000000000..8031346d0d
--- /dev/null
+++ b/AppPkg/Applications/Python/Python-2.7.2/Include/pygetopt.h
@@ -0,0 +1,17 @@
+
+#ifndef Py_PYGETOPT_H
+#define Py_PYGETOPT_H
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+PyAPI_DATA(int) _PyOS_opterr;
+PyAPI_DATA(int) _PyOS_optind;
+PyAPI_DATA(char *) _PyOS_optarg;
+
+PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);
+
+#ifdef __cplusplus
+}
+#endif
+#endif /* !Py_PYGETOPT_H */