Displaying 1 result from an estimated 1 matches for "hfilemap".
Did you mean:
filemap
2009 Jan 13
1
Shared Memory and Memory Mapped I/O
I am running wine 1.1.12 on Solaris 10. I have a windows application running with wine that interfaces to other applications via "shared memory" or "memory mapped I/O" or what ever the official name for this is. In windows I would typically use something like
Code:
token.hFileMapping = OpenFileMapping(0xF001F, false, "test");
token.location = MapViewOfFile(token.hFileMapping, 0xF001F, 0, 0, 1000);
in windows to get the memory location to read or write to.
I want to access the shared memory created by the windows application running under wine with a linux a...