Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorvald Natvig <slicer@users.sourceforge.net>2008-12-13 16:06:24 +0300
committerThorvald Natvig <slicer@users.sourceforge.net>2008-12-13 16:06:24 +0300
commit98da0f9ae4c0e373d4d3f8bb98589cf7420e71f4 (patch)
tree4a7631c00924787127d7219ec40e0a1c27462e70 /g15helper/g15helper.h
parentf83821583a1e4cdda449cd11eb399844c673e198 (diff)
LCD Support [mkrautz]
git-svn-id: https://mumble.svn.sourceforge.net/svnroot/mumble/trunk@1356 05730e5d-ab1b-0410-a4ac-84af385074fa
Diffstat (limited to 'g15helper/g15helper.h')
-rw-r--r--g15helper/g15helper.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/g15helper/g15helper.h b/g15helper/g15helper.h
new file mode 100644
index 000000000..cd3f1a2cc
--- /dev/null
+++ b/g15helper/g15helper.h
@@ -0,0 +1,57 @@
+/* Copyright (C) 2008, Mikkel Krautz <mikkel@krautz.dk>
+
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+
+ - Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ - Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+ - Neither the name of the Mumble Developers nor the names of its
+ contributors may be used to endorse or promote products derived from this
+ software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
+
+#ifndef __G15_HELPER_H__
+#define __G15_HELPER_H__
+
+#define G15_MAX_DEV 5
+#define G15_MAX_WIDTH 160
+#define G15_MAX_HEIGHT 43
+#define G15_MAX_BPP 1
+#define G15_MAX_FBMEM (G15_MAX_WIDTH * G15_MAX_HEIGHT * G15_MAX_BPP)
+#define G15_MAX_FBMEM_BITS (G15_MAX_FBMEM / 8)
+#define G15_PIPE_NAME L"\\\\.\\pipe\\MumbleG15Pipe"
+#define G15_WIDGET_NAME L"Mumble G15 Display"
+
+enum {
+ G15_ERR_WAITPIPE = 50,
+ G15_ERR_CREATEFILE,
+ G15_ERR_PIPESTATE,
+ G15_ERR_INIT,
+ G15_ERR_CONNECT,
+ G15_ERR_ENUMERATE,
+ G15_ERR_OPEN,
+ G15_ERR_READFILE,
+ G15_ERR_CLOSE,
+ G15_ERR_DISCONNECT,
+ G15_ERR_DEINIT,
+};
+
+#endif /* __G15_HELPER_H__ */