implemente le squelette de pmomediaserver

This commit is contained in:
2025-10-17 08:55:29 +02:00
parent bd61fdba81
commit d657ea2315
41 changed files with 720 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
use crate::connectionmanager::variables::{SOURCEPROTOCOLINFO, SINKPROTOCOLINFO};
use pmoupnp::define_action;
define_action! {
pub static GETPROTOCOLINFO = "GetProtocolInfo" {
out "Source" => SOURCEPROTOCOLINFO,
out "Sink" => SINKPROTOCOLINFO,
}
}