shared memeory concepts in windows
-
hi iam doing a project where it has 2 different apps 1. bluetooth app 2. device driver app. both in c++. now can i implement a shared memeory concept in (c++) windows where both the process should access a single place for the data. if possible how to do it.
-
hi iam doing a project where it has 2 different apps 1. bluetooth app 2. device driver app. both in c++. now can i implement a shared memeory concept in (c++) windows where both the process should access a single place for the data. if possible how to do it.
manju23reddy wrote:
shared memeory concepts
Actually, the jargon is IPC[^]. There are several ways mechanisms supported by windows to achieve IPC, one of which would be to use WM_COPYDATA[^]. Look up MSDN[^] for more details. You may also search for articles on individual topics at CP and Google. There are plenty of examples around.
Many are stubborn in pursuit of the path they have chosen, few in pursuit of the goal - Friedrich Nietzsche .·´¯`·->Rajesh<-·´¯`·. [Microsoft MVP - Visual C++]
-
hi iam doing a project where it has 2 different apps 1. bluetooth app 2. device driver app. both in c++. now can i implement a shared memeory concept in (c++) windows where both the process should access a single place for the data. if possible how to do it.
If you are trying to exchange data between a device driver and a windows application, then this article[^] will be helpful. Regards, Jijo.
_____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.