summaryrefslogtreecommitdiff
path: root/softhdservice.h
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2012-11-28 09:17:32 +0100
committerhorchi <vdr@jwendel.de>2012-11-28 09:17:32 +0100
commit0197b5c98cdeec3740644655963e1f100d73998e (patch)
tree029168cfc6a31cb3bb6309f2b8ae577302307d8d /softhdservice.h
downloadvdr-plugin-seduatmo-0197b5c98cdeec3740644655963e1f100d73998e.tar.gz
vdr-plugin-seduatmo-0197b5c98cdeec3740644655963e1f100d73998e.tar.bz2
initial Release of vdr-plugin-seduatmo
Diffstat (limited to 'softhdservice.h')
-rw-r--r--softhdservice.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/softhdservice.h b/softhdservice.h
new file mode 100644
index 0000000..3438a23
--- /dev/null
+++ b/softhdservice.h
@@ -0,0 +1,39 @@
+///
+/// @file softhddev_service.h @brief software HD device service header file.
+///
+/// Copyright (c) 2012 by durchflieger. All Rights Reserved.
+///
+/// Contributor(s):
+///
+/// License: AGPLv3
+///
+/// This program is free software: you can redistribute it and/or modify
+/// it under the terms of the GNU Affero General Public License as
+/// published by the Free Software Foundation, either version 3 of the
+/// License.
+///
+/// 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 Affero General Public License for more details.
+///
+/// $Id: softhdservice.h,v 1.2 2012/11/13 08:58:11 wendel Exp $
+//////////////////////////////////////////////////////////////////////////////
+
+#pragma once
+
+#define ATMO1_GRAB_SERVICE "SoftHDDevice-AtmoGrabService-v1.1"
+
+struct SoftHDDevice_AtmoGrabService_v1_1_t
+{
+ // rewuest/reply data
+
+ int width;
+ int height;
+
+ // reply data
+
+ int size;
+
+ void* img;
+};