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
commit0b674e109bc2f9b86b428817fa921adf6bde90d6 (patch)
tree27270cb30bc40f06521f1755284179c868581ca7 /ace/FIFO_Send_Msg.h
parente1b4cf4c52e6e689ab6c16c602951c928551e74c (diff)
downloadATCD-0b674e109bc2f9b86b428817fa921adf6bde90d6.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);