summaryrefslogtreecommitdiff
path: root/examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.h')
-rw-r--r--examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.h b/examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.h
index b8e0e76e211..ac1eac69117 100644
--- a/examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.h
+++ b/examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.h
@@ -1,5 +1,4 @@
// -*- C++ -*-
-//
// $Id$
// Handles UNIX datagram messages from local host.
@@ -8,6 +7,7 @@
#define _HANDLE_L_DGRAM_H
#include "ace/Service_Config.h"
+#include "ace/Reactor.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
@@ -24,8 +24,8 @@ class ACE_Svc_Export Handle_L_Dgram : public ACE_Service_Object, public ACE_LSOC
{
public:
Handle_L_Dgram (void);
- virtual int init (int argc, char *argv[]);
- virtual int info (char **, size_t) const;
+ virtual int init (int argc, ACE_TCHAR *argv[]);
+ virtual int info (ACE_TCHAR **, size_t) const;
virtual int fini (void);
private:
@@ -34,8 +34,8 @@ private:
virtual int handle_input (int fd);
virtual int handle_close (int fd, ACE_Reactor_Mask);
- char rendezvous[MAXPATHLEN + 1];
- static const char *DEFAULT_RENDEZVOUS;
+ ACE_TCHAR rendezvous[MAXPATHLEN + 1];
+ static const ACE_TCHAR *DEFAULT_RENDEZVOUS;
};
extern ACE_Service_Object_Type ld;