Files
grd/grd-rdp-stream-owner.c
2026-02-13 13:06:50 +09:00

45 lines
1.4 KiB
C

/*
* Copyright (C) 2023 Pascal Nowack
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*/
#include "config.h"
#include "grd-rdp-stream-owner.h"
G_DEFINE_ABSTRACT_TYPE (GrdRdpStreamOwner, grd_rdp_stream_owner, G_TYPE_OBJECT)
void
grd_rdp_stream_owner_notify_stream_created (GrdRdpStreamOwner *stream_owner,
uint32_t stream_id,
GrdStream *stream)
{
GrdRdpStreamOwnerClass *klass = GRD_RDP_STREAM_OWNER_GET_CLASS (stream_owner);
klass->on_stream_created (stream_owner, stream_id, stream);
}
static void
grd_rdp_stream_owner_init (GrdRdpStreamOwner *stream_owner)
{
}
static void
grd_rdp_stream_owner_class_init (GrdRdpStreamOwnerClass *klass)
{
}