⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 custom.c

📁 这是关于RFC3261实现sip的源代码
💻 C
字号:
/* * This file is the basis of a custom Python interpreter.  Use it for Linux, * UNIX and Windows (console).  You will also need to edit mkcustom.py. */#include <Python.h>int main(int argc, char **argv){	/*	 * Declare the module initialisation function for each module you want	 * to be a builtin in the custom interpreter.  The name of the function	 * will be the name of the module with "init" prepended.  The modules	 * must be built as static libraries (using the -k flag to configure.py	 * for SIP and PyQt).	 */	/* The sip module will be builtin. */	extern void initsip(void);	/*	 * Uncomment these (and in the structure below) to include the PyQt	 * modules as builtins.	 *//*	extern void initqt(void);*//*	extern void initqtaxcontainer(void);*//*	extern void initqtcanvas(void);*//*	extern void initqtext(void);*//*	extern void initqtgl(void);*//*	extern void initqtnetwork(void);*//*	extern void initqtsql(void);*//*	extern void initqttable(void);*//*	extern void initqtui(void);*//*	extern void initqtxml(void);*/	/*	 * This structure specifies the names and initialisation functions of	 * the builtin modules.	 */	struct _inittab builtin_modules[] = {		{"sip", initsip},/*		{"qt", initqt},*//*		{"qtaxcontainer", initqtaxcontainer},*//*		{"qtcanvas", initqtcanvas},*//*		{"qtext", initqtext},*//*		{"qtgl", initqtgl},*//*		{"qtnetwork", initqtnetwork},*//*		{"qtsql", initqtsql},*//*		{"qttable", initqttable},*//*		{"qtui", initqtui},*//*		{"qtxml", initqtxml},*/		{NULL, NULL}	};	PyImport_ExtendInittab(builtin_modules);	return Py_Main(argc, argv);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -