The Include, Parser, and Python directories from the cPython 2.7.10 distribution. These files are unchanged and set the baseline for subsequent commits. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Daryl McDaniel <edk2-lists@mc2research.org> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18737 6f19259b-4bc3-4df7-8a09-765794883524
		
			
				
	
	
		
			32 lines
		
	
	
		
			896 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			896 B
		
	
	
	
		
			C
		
	
	
	
	
	
| 
 | |
| /* System module interface */
 | |
| 
 | |
| #ifndef Py_SYSMODULE_H
 | |
| #define Py_SYSMODULE_H
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| PyAPI_FUNC(PyObject *) PySys_GetObject(char *);
 | |
| PyAPI_FUNC(int) PySys_SetObject(char *, PyObject *);
 | |
| PyAPI_FUNC(FILE *) PySys_GetFile(char *, FILE *);
 | |
| PyAPI_FUNC(void) PySys_SetArgv(int, char **);
 | |
| PyAPI_FUNC(void) PySys_SetArgvEx(int, char **, int);
 | |
| PyAPI_FUNC(void) PySys_SetPath(char *);
 | |
| 
 | |
| PyAPI_FUNC(void) PySys_WriteStdout(const char *format, ...)
 | |
| 			Py_GCC_ATTRIBUTE((format(printf, 1, 2)));
 | |
| PyAPI_FUNC(void) PySys_WriteStderr(const char *format, ...)
 | |
| 			Py_GCC_ATTRIBUTE((format(printf, 1, 2)));
 | |
| 
 | |
| PyAPI_FUNC(void) PySys_ResetWarnOptions(void);
 | |
| PyAPI_FUNC(void) PySys_AddWarnOption(char *);
 | |
| PyAPI_FUNC(int) PySys_HasWarnOptions(void);
 | |
| 
 | |
| PyAPI_FUNC(size_t) _PySys_GetSizeOf(PyObject *);
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 | |
| #endif /* !Py_SYSMODULE_H */
 |