"AntonSotov"  wrote in message news:[email protected]...
extern (Windows) int EnumWindows(WNDENUMPROC, long);

The second argument is LPARAM, which maps to C's long, but D's long maps to C's long long.

To be safe, use these aliases whenever possible by using:

import core.sys.windows.windows;

Reply via email to