summaryrefslogtreecommitdiff
path: root/ace/FIFO.h
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-23 04:43:59 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-23 04:43:59 +0000
commitf40cc79fed36173f3588f26d7bec8ee7705dc153 (patch)
tree61d38d262d43ac77fc2ad94c9e7e850cd5607622 /ace/FIFO.h
parent2afe8d4640d7b30bfe959c16212ea87df8e6ec7c (diff)
downloadATCD-f40cc79fed36173f3588f26d7bec8ee7705dc153.tar.gz
ChangeLogTag:Sat Apr 22 20:53:11 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace/FIFO.h')
-rw-r--r--ace/FIFO.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/FIFO.h b/ace/FIFO.h
index fa4941a87f7..8f0f44a9321 100644
--- a/ace/FIFO.h
+++ b/ace/FIFO.h
@@ -35,7 +35,7 @@ class ACE_Export ACE_FIFO : public ACE_IPC_SAP
// IPC mechanism that will be portable to both UNIX and Win32,
// take a look at the <ACE_SPIPE_*> classes.
public:
- int open (const ASYS_TCHAR *rendezvous, int flags, int perms,
+ int open (const ACE_TCHAR *rendezvous, int flags, int perms,
LPSECURITY_ATTRIBUTES sa = 0);
// Open up the named pipe on the <rendezvous> in accordance with the
// flags.
@@ -47,7 +47,7 @@ public:
// Close down the ACE_FIFO and remove the rendezvous point from the
// file system.
- int get_local_addr (const ASYS_TCHAR *&rendezvous) const;
+ int get_local_addr (const ACE_TCHAR *&rendezvous) const;
// Return the local address of this endpoint.
void dump (void) const;
@@ -61,13 +61,13 @@ protected:
ACE_FIFO (void);
// Default constructor.
- ACE_FIFO (const ASYS_TCHAR *rendezvous, int flags, int perms,
+ ACE_FIFO (const ACE_TCHAR *rendezvous, int flags, int perms,
LPSECURITY_ATTRIBUTES sa = 0);
// Open up the named pipe on the <rendezvous> in accordance with the
// flags.
private:
- ASYS_TCHAR rendezvous_[MAXPATHLEN + 1];
+ ACE_TCHAR rendezvous_[MAXPATHLEN + 1];
// Rendezvous point in the file system.
};