diff options
Diffstat (limited to 'services/avards.h')
-rw-r--r-- | services/avards.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/services/avards.h b/services/avards.h new file mode 100644 index 0000000..e80393f --- /dev/null +++ b/services/avards.h @@ -0,0 +1,37 @@ +/* + * avards-services.h: A plugin for the Video Disk Recorder + * + * See the README file for copyright information and how to reach the author. + * + * $Id: avards.h,v 1.1 2007/11/22 09:01:05 amair Exp $ + */ + +#ifndef __AVARDS_SERVICES_H +#define __AVARDS_SERVICES_H + +#if APIVERSNUM < 10504 +#define AVARDS_MAXOSDSIZE_SERVICE_STRING_ID "avards-MaxOSDsize-v1.0" + +struct avards_MaxOSDsize_v1_0 { + int left, top, width, height; +}; +#endif + +#define AVARDS_CURRENT_WSSMODE_SERVICE_STRING_ID "avards-CurrentWSSMode-v1.0" + +struct avards_CurrentWssMode_v1_0 { + const char *ModeString; +}; + + +#define AVARDS_CURRENT_VIDEO_FORMAT_SERVICE_STRING_ID "avards-CurrentVideoFormat-v1.0" + +struct avards_CurrentVideoFormat_v1_0 { + const char *ModeString; + int Mode; + int Width; + int Height; +}; + + +#endif // __AVARDS_SERVICES_H |