22 lines
466 B
C++
22 lines
466 B
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (c) Electronic Arts Inc. All rights reserved.
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef EAMAIN_PRINTF_H
|
|
#define EAMAIN_PRINTF_H
|
|
|
|
#include <EAMain/internal/Version.h>
|
|
|
|
namespace EA
|
|
{
|
|
namespace EAMain
|
|
{
|
|
class IChannel;
|
|
|
|
namespace Messages
|
|
{
|
|
EAMAIN_API void Print(const char* pData);
|
|
}}}
|
|
|
|
#endif // header include guard
|