Jakob Eriksson jakov@vmlinux.org writes:
- lockfileex_capable = dll_capable("kernel32", "LockFileEx");
- if (lockfileex_capable)
- {
/* Test for broken LockFileEx a la Windows 95 OSR2. */
if (LockFileEx( handle, 0, 0, 100, 0, &overlapped ))
Can I ask somebody to explain me how this works? Shouldn't the LockFileEx call be satisfied on program startup even if we won't call it?
Ferenc Wagner wrote:
Jakob Eriksson jakov@vmlinux.org writes:
- lockfileex_capable = dll_capable("kernel32", "LockFileEx");
- if (lockfileex_capable)
- {
/* Test for broken LockFileEx a la Windows 95 OSR2. */
if (LockFileEx( handle, 0, 0, 100, 0, &overlapped ))
Can I ask somebody to explain me how this works? Shouldn't the LockFileEx call be satisfied on program startup even if we won't call it?
But LockFileEx does not exist on Windows 95... other than that, I don't know what to answer. Maybe I don't understand the question...
regards, Jakob
(slow day on winedevel so far by the way...)