mci doesn't compile on windows.
Brought to you by:
che_fox
setup-win32.py misses data which allows to compile
mci.dll
change
ext_modules = [Extension('mci', ['win32/mci.c']
into
ext_modules = [
Extension('mci', ['win32/mci.c'],
include_dirs=["d:/mvc/include"],
define_macros=[('MCI_EXPORTS','1')],
library_dirs=["d:/mvc/lib"],
libraries=["winmm" ] )
]
watch out that include_dirs and library_dirs are
computer specific. I assume that someone more familiar
with python can automate this.
Logged In: NO
Forgot to mention it works for python 2.2 and 2.3