NetworkChannel.h 550 B

1234567891011121314151617181920212223
  1. /////////////////////////////////////////////////////////////////////////////
  2. // NetworkChannel.h
  3. //
  4. // Copyright (c) Electronic Arts Inc. All rights reserved.
  5. /////////////////////////////////////////////////////////////////////////////
  6. #ifndef EAMAIN_INTERNAL_NETWORKCHANNEL_H
  7. #define EAMAIN_INTERNAL_NETWORKCHANNEL_H
  8. #include <EAMain/internal/EAMainChannels.h>
  9. namespace EA
  10. {
  11. namespace EAMain
  12. {
  13. namespace Internal
  14. {
  15. IChannel *CreateNetworkChannel(const char *connection, int port);
  16. }
  17. }
  18. }
  19. #endif