0

Possible Duplicate:
What is the best mechanism for communicating cross-process in Windows CE?

I created two apps using .net cf 2.0.

And I need send some message\command from one app to other (when second app receive this message I want run some code). How can I do this use only winapi. I don't want use tcp or wcf, only use winapi.

Community
  • 1
  • 1
Std_Net
  • 1,076
  • 3
  • 12
  • 25

1 Answers1

2

Try WM_COPYDATA in following link...it is a win32 api

http://msdn.microsoft.com/en-us/library/ms649011.aspx

can be done also through named pipes & MSMQ

Rajesh Subramanian
  • 6,400
  • 5
  • 29
  • 42