/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use serde::{Deserialize, Serialize}; use std::io; pub type GLPlayerSender = ipc_channel::ipc::IpcSender; pub type GLPlayerReceiver = ipc_channel::ipc::IpcReceiver; pub fn glplayer_channel Deserialize<'de>>( ) -> Result<(GLPlayerSender, GLPlayerReceiver), io::Error> { ipc_channel::ipc::channel() }