diff options
author | Johns <johns98@gmx.net> | 2012-11-05 16:02:58 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-11-05 16:02:58 +0100 |
commit | 188e985557025a58318c5fc1cfd29f4b119d4c71 (patch) | |
tree | 63d25b3e77ea8160bb141543096c39e017db2ef9 /play_service.h | |
parent | 481753bcc989ade3f46aba4c0a1289c168c1af1d (diff) | |
download | vdr-plugin-play-188e985557025a58318c5fc1cfd29f4b119d4c71.tar.gz vdr-plugin-play-188e985557025a58318c5fc1cfd29f4b119d4c71.tar.bz2 |
Play 3d service api.
Diffstat (limited to 'play_service.h')
-rw-r--r-- | play_service.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/play_service.h b/play_service.h new file mode 100644 index 0000000..d903996 --- /dev/null +++ b/play_service.h @@ -0,0 +1,30 @@ +/// +/// @file play_service.h @brief Play 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$ +////////////////////////////////////////////////////////////////////////////// + +#pragma once + +#define PLAY_OSD_3DMODE_SERVICE "Play-Osd3DModeService-v1.0" + +typedef struct +{ + int Mode; +} Play_Osd3DModeService_v1_0_t; |