To build plain DLLs you need to export some functions.
Exporting initfoo (and making this just .pyd) is not useful.
So this is not in the groud of py2exe. You should use pyrex
to create exported functions, and then plain "setup build"
to compile pyrex source to DLL.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=984185
I agree. Making DLLs would be very useful.
Logged In: YES
user_id=39274
To build plain DLLs you need to export some functions.
Exporting initfoo (and making this just .pyd) is not useful.
So this is not in the groud of py2exe. You should use pyrex
to create exported functions, and then plain "setup build"
to compile pyrex source to DLL.