I need to create a read-only lock on a certain file in Windows, in C. The lockf function is completely useless, as it creates an exclusive lock. I need to protect the file from writes, but multiple processes should be able to read it at the same time.
I cannot use CygWin or MINGW libraries, I am limited to the Microsoft APIs, which don't seem to have a decent fcntl. Or am I missing something?