diff options
| author | Christopher Reimer <mail@creimer.net> | 2013-12-10 14:12:33 +0100 |
|---|---|---|
| committer | Christian Völlinger <zerov83@gmail.com> | 2013-12-15 10:59:07 +0100 |
| commit | b35c5a69889ee3eeb4d3ec136523746fe8ebe233 (patch) | |
| tree | b23943da2072841de7f18478b76c5ee266a2d9e9 /lib/boblight-functions.h | |
| parent | ac1d208ddcccbe723418d16470d3604d1379148e (diff) | |
| download | vdr-plugin-boblight-b35c5a69889ee3eeb4d3ec136523746fe8ebe233.tar.gz vdr-plugin-boblight-b35c5a69889ee3eeb4d3ec136523746fe8ebe233.tar.bz2 | |
Remove lib directory. Better search global for boblight.h Bump version number
Signed-off-by: Christian Völlinger <zerov83@gmail.com>
Diffstat (limited to 'lib/boblight-functions.h')
| -rw-r--r-- | lib/boblight-functions.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/lib/boblight-functions.h b/lib/boblight-functions.h deleted file mode 100644 index 0e0731e..0000000 --- a/lib/boblight-functions.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * boblight - * Copyright (C) Bob 2009 - * - * boblight is free software: you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the - * Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * boblight 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -//these definitions can be expanded to make normal prototypes, or functionpointers and dlsym lines - -BOBLIGHT_FUNCTION(void*, boblight_init, ()); -BOBLIGHT_FUNCTION(void, boblight_destroy, (void* vpboblight)); - -BOBLIGHT_FUNCTION(int, boblight_connect, (void* vpboblight, const char* address, int port, int usectimeout)); -BOBLIGHT_FUNCTION(int, boblight_setpriority, (void* vpboblight, int priority)); -BOBLIGHT_FUNCTION(const char*, boblight_geterror, (void* vpboblight)); -BOBLIGHT_FUNCTION(int, boblight_getnrlights, (void* vpboblight)); -BOBLIGHT_FUNCTION(const char*, boblight_getlightname, (void* vpboblight, int lightnr)); - -BOBLIGHT_FUNCTION(int, boblight_getnroptions, (void* vpboblight)); -BOBLIGHT_FUNCTION(const char*, boblight_getoptiondescript,(void* vpboblight, int option)); -BOBLIGHT_FUNCTION(int, boblight_setoption, (void* vpboblight, int lightnr, const char* option)); -BOBLIGHT_FUNCTION(int, boblight_getoption, (void* vpboblight, int lightnr, const char* option, const char** output)); - -BOBLIGHT_FUNCTION(void, boblight_setscanrange, (void* vpboblight, int width, int height)); - -BOBLIGHT_FUNCTION(int, boblight_addpixel, (void* vpboblight, int lightnr, int* rgb)); -BOBLIGHT_FUNCTION(void, boblight_addpixelxy, (void* vpboblight, int x, int y, int* rgb)); - -BOBLIGHT_FUNCTION(int, boblight_sendrgb, (void* vpboblight, int sync, int* outputused)); -BOBLIGHT_FUNCTION(int, boblight_ping, (void* vpboblight, int* outputused)); |
