1//=- RPCChannel.inc - LLVM out-of-process JIT execution for Windows --=// 2// 3// The LLVM Compiler Infrastructure 4// 5// This file is distributed under the University of Illinois Open Source 6// License. See LICENSE.TXT for details. 7// 8//===----------------------------------------------------------------------===// 9// 10// Implementation of the Windows-specific parts of the RPCChannel class 11// which executes JITed code in a separate process from where it was built. 12// 13//===----------------------------------------------------------------------===// 14 15namespace llvm { 16 17bool RPCChannel::createServer() { return false; } 18 19bool RPCChannel::createClient() { return false; } 20 21bool RPCChannel::WriteBytes(const void *Data, size_t Size) { return false; } 22 23bool RPCChannel::ReadBytes(void *Data, size_t Size) { return false; } 24 25void RPCChannel::Wait() {} 26 27RPCChannel::~RPCChannel() {} 28 29} // namespace llvm 30