-1

Does anybody know any windows applications that use windows API like CreateNamedPipe, CreateFileMapping, CreateMailSlot? Googling didn't help!

Bill the Lizard
  • 398,270
  • 210
  • 566
  • 880
danglingptr
  • 143
  • 2
  • 7
  • 1
    Your edit ("XYZ How does WLZ work in linux?") made this question, as well as all the existing answers, meaningless -- if you have a new question, please ask it separately (and be more specific!). –  Jul 23 '11 at 01:12

2 Answers2

1

You can find an example of CreateNamedPipe here

You can find an example of CreateFileMapping here

You can find an example of CreateMailSlot here

Community
  • 1
  • 1
Icemanind
  • 47,519
  • 50
  • 171
  • 296
0

Google should help.

There's also tons of sample code that comes with Visual Studio.

Here's a link I got from Googling "createfilemapping example":

http://msdn.microsoft.com/en-us/library/aa366551%28v=VS.85%29.aspx

Here's one from Googling "win32 createnamedpipe example":

http://www.davekb.com/browse_programming_tips:win32_createnamedpipe_example:txt

paulsm4
  • 114,292
  • 17
  • 138
  • 190