diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-06-23 08:05:03 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-06-23 08:05:03 +0000 |
commit | 31d9a45d1387a00a3c04c231d481e3af9a874ee7 (patch) | |
tree | f0131bd31b083c7c7a26da9fb807c6ed9e689859 /ace/FILE_Addr.h | |
parent | bad20233663443a04c3a334ea5f1534b2e876bdc (diff) | |
download | ATCD-31d9a45d1387a00a3c04c231d481e3af9a874ee7.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/FILE_Addr.h')
-rw-r--r-- | ace/FILE_Addr.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ace/FILE_Addr.h b/ace/FILE_Addr.h index dcfd2dbef7b..e49240dbe7f 100644 --- a/ace/FILE_Addr.h +++ b/ace/FILE_Addr.h @@ -45,7 +45,12 @@ public: virtual void *get_addr (void) const; // Return a pointer to the address. - virtual int addr_to_string (LPTSTR addr, size_t) const; +#if defined (UNICODE) + virtual int addr_to_string (wchar_t *addr, size_t) const; + // Transform the current address into string format. +#endif /* UNICODE */ + + virtual int addr_to_string (char *addr, size_t) const; // Transform the current address into string format. virtual int operator == (const ACE_Addr &SAP) const; |