|
If you want to access more than 32MB of address space, you could use the shared memory space.
The addresses in that area can be shared between process but you can just use them to use more than the 32MB that you get out of the box.
Call CreateFileMapping and MapViewOfFile to reserve addresses and then write to the pointer returned by MapViewOfFile to commit the pages....
|