Your IP : 216.73.216.196
B
� f� � @ sN d dl Z d dlZdZdZdedd fed d fdd�Zdd � Zd
d� Zdd
� ZdS )� Na�
#include <windows.h>
int WINAPI WinMain(
HINSTANCE hInstance, // handle to current instance
HINSTANCE hPrevInstance, // handle to previous instance
LPSTR lpCmdLine, // pointer to command line
int nCmdShow // show state of window
)
{
extern int Py_FrozenMain(int, char **);
PyImport_FrozenModules = _PyImport_FrozenModules;
return Py_FrozenMain(__argc, __argv);
}
z�
extern int PythonService_main(int, char **);
int main( int argc, char **argv)
{
PyImport_FrozenModules = _PyImport_FrozenModules;
return PythonService_main(argc, argv);
}
)N� r r )� r r )ZconsoleZwindowsZserviceZcom_dllc C s8 yt | d d� S tk
r2 td| �d �Y nX d S )N� zThe subsystem %s is not known)�subsystem_details�KeyError�
ValueError)� subsystem� r �A/opt/alt/python37/lib64/python3.7/Tools/freeze/winmakemakefile.py�get_custom_entry_point&