Staging
v0.8.1
https://github.com/python/cpython
Revision 38546ee51cadc924bb4a8f703d1891adef3c6829 authored by Benjamin Peterson on 04 April 2013, 02:35:12 UTC, committed by Benjamin Peterson on 04 April 2013, 02:35:12 UTC
1 parent f4e68b1
Raw File
Tip revision: 38546ee51cadc924bb4a8f703d1891adef3c6829 authored by Benjamin Peterson on 04 April 2013, 02:35:12 UTC
close search and replace dialog after it is used (closes #17625)
Tip revision: 38546ee
pygetopt.h

#ifndef Py_PYGETOPT_H
#define Py_PYGETOPT_H
#ifdef __cplusplus
extern "C" {
#endif

#ifndef Py_LIMITED_API
PyAPI_DATA(int) _PyOS_opterr;
PyAPI_DATA(int) _PyOS_optind;
PyAPI_DATA(wchar_t *) _PyOS_optarg;

PyAPI_FUNC(void) _PyOS_ResetGetOpt(void);
#endif

PyAPI_FUNC(int) _PyOS_GetOpt(int argc, wchar_t **argv, wchar_t *optstring);

#ifdef __cplusplus
}
#endif
#endif /* !Py_PYGETOPT_H */
back to top