summaryrefslogtreecommitdiff
path: root/ace/FIFO_Send_Msg.h
diff options
context:
space:
mode:
authornw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-10-20 18:33:11 +0000
committernw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-10-20 18:33:11 +0000
commit8616de7e2c6251faef4a9b88cb4b3ec3eabd4bb1 (patch)
tree27270cb30bc40f06521f1755284179c868581ca7 /ace/FIFO_Send_Msg.h
parentbbb149d818f5cfe70fd4379701b85a5b9b5881d5 (diff)
downloadATCD-8616de7e2c6251faef4a9b88cb4b3ec3eabd4bb1.tar.gz
Added LPSECURITY_ATTRIBUTES to a bunch of methods.
Diffstat (limited to 'ace/FIFO_Send_Msg.h')
-rw-r--r--ace/FIFO_Send_Msg.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/ace/FIFO_Send_Msg.h b/ace/FIFO_Send_Msg.h
index 1bf0fb0c5f2..94a8a4cabe9 100644
--- a/ace/FIFO_Send_Msg.h
+++ b/ace/FIFO_Send_Msg.h
@@ -32,12 +32,14 @@ public:
ACE_FIFO_Send_Msg (const char *rendezvous,
int flags = O_WRONLY,
- int perms = ACE_DEFAULT_FILE_PERMS);
+ int perms = ACE_DEFAULT_FILE_PERMS,
+ LPSECURITY_ATTRIBUTES sa = 0);
// Open up a record-oriented named pipe for writing.
int open (const char *rendezvous,
int flags = O_WRONLY,
- int perms = ACE_DEFAULT_FILE_PERMS);
+ int perms = ACE_DEFAULT_FILE_PERMS,
+ LPSECURITY_ATTRIBUTES sa = 0);
// Open up a record-oriented named pipe for writing.
ssize_t send (const ACE_Str_Buf &msg);