"kalpesh" <kalpeshgedia@gmail.com> wrote in message
news:1183612035.307722.118220@i38g2000prf.googlegr oups.com...
> The link provide by you is not so much helpful to me give me more
> help ....
First you call CreateNamedPipe, to create the pipe.
Then you call SetSecurityInfo to change the Security Descriptor on the pipe.
Then your only issue is how to create the DACL for the Security Descriptor -
you almost certainly want to call GetSecurityInfo, to find out what the
existing DACL is, and modify it, rather than create one from scratch.
The SetEntriesInAcl function can then be used to create a new ACL with extra
access entries on top of what was originally in the DACL - example code is
at
http://msdn2.microsoft.com/en-us/library/aa379283.aspx
Alun.
~~~~