Memmory mapping in C#
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Hi, I'm trying to have interprocess communication between two programs. The first one is written in C++ (embedded for PocketPC) and the latter in C# and .NET CE (for PocketPC). I want to use memmory mapped files for IPC. In the C++ side I use the following API: CreateFileMapping() CreateMutex() MapViewOfFile() ... What can I do from the C# side in order to communicate properly? Thank you, Themis