如何在非控制台 C++ 应用程序中实现监听器以监听来自 Adobe AIR 的标准输入?
在 C# 控制台应用程序中,它看起来像:
namespace HelloNativeProcess
{
class Program
{
static void Main(string[] args)
{
using (Stream stdin = Console.OpenStandardInput())
using (Stream stdout = Console.OpenStandardOutput())
{
byte[] buffer = new byte[2048];
int bytes;
while ((bytes = stdin.Read(buffer, 0, buffer.Length)) > 0)
{
stdout.Write(buffer, 0, bytes);
}
}
}
}
}
我需要一个带有APIENTRY winMain()的 C++ 示例 - 启动函数。谢谢。