summaryrefslogtreecommitdiffstats
path: root/Graphic_Equalizer/include/display.hch
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2004-10-13 13:39:14 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2004-10-13 13:39:14 (GMT)
commit4ef05737d73fc9a6531855d3481f843ac4a4bf1d (patch)
treead094da2d64a21f8848ca1de85f6df365ef86e48 /Graphic_Equalizer/include/display.hch
parente0c8a311ed6f9aa3cf009723d75ea58737bfd35f (diff)
downloadTASS-4ef05737d73fc9a6531855d3481f843ac4a4bf1d.zip
TASS-4ef05737d73fc9a6531855d3481f843ac4a4bf1d.tar.gz
TASS-4ef05737d73fc9a6531855d3481f843ac4a4bf1d.tar.bz2
Diffstat (limited to 'Graphic_Equalizer/include/display.hch')
-rw-r--r--Graphic_Equalizer/include/display.hch40
1 files changed, 40 insertions, 0 deletions
diff --git a/Graphic_Equalizer/include/display.hch b/Graphic_Equalizer/include/display.hch
new file mode 100644
index 0000000..1afbab0
--- /dev/null
+++ b/Graphic_Equalizer/include/display.hch
@@ -0,0 +1,40 @@
+/*! \file display.hch
+ *
+ * \section generic Display API
+ *
+ * \section project Project information.
+ * Project Graphic Equalizer\n
+ * \author
+ * \date 20041011
+ * \version 0.1
+ *
+ * \section copyright Copyright
+ * Copyright ©2004 Koninklijke Philips Electronics N.V. All rights reserved
+ *
+ * \section history Change history
+ * 20041011: \n Initial version
+ *
+ ********************************************************************/
+
+#ifndef _DISPLAY_HCH
+#define _DISPLAY_HCH 1
+
+
+
+/*
+ * Use defines to keep API generic
+ */
+#define display_run(VideoOut, ClockRate) PalVideoOutRun(VideoOut, ClockRate)
+#define display_init(VideoOut) PalVideoOutEnable(VideoOut)
+
+
+
+/*
+ * Main display loop. This function never returns! It handles display output.
+ */
+static macro proc display_main(VideoOut);
+
+#else
+#error "ERROR file display.hch multiple times included"
+#endif /* --- _DISPLAY_HCH --- */
+