We want to avoid any static files that are shared between multiple programs but are not part of SHL. These make the build-process just more complex. Move log.[ch] to SHL so we have a known context. Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
59 lines
1.8 KiB
C
59 lines
1.8 KiB
C
/*
|
|
* kmscon - BBulk rendering backend module
|
|
*
|
|
* Copyright (c) 2011-2013 David Herrmann <dh.herrmann@googlemail.com>
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
* a copy of this software and associated documentation files
|
|
* (the "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
* the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included
|
|
* in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
/*
|
|
* BBulk rendering backend module
|
|
* This module provides the bbulk renderer backend.
|
|
*/
|
|
|
|
#include <errno.h>
|
|
#include <stdlib.h>
|
|
#include "text.h"
|
|
#include "kmscon_module_interface.h"
|
|
#include "shl_log.h"
|
|
|
|
#define LOG_SUBSYSTEM "mod_bbulk"
|
|
|
|
static int kmscon_bbulk_load(void)
|
|
{
|
|
int ret;
|
|
|
|
kmscon_text_bbulk_ops.owner = KMSCON_THIS_MODULE;
|
|
ret = kmscon_text_register(&kmscon_text_bbulk_ops);
|
|
if (ret) {
|
|
log_error("cannot register bbulk renderer");
|
|
return ret;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void kmscon_bbulk_unload(void)
|
|
{
|
|
kmscon_text_unregister(kmscon_text_bbulk_ops.name);
|
|
}
|
|
|
|
KMSCON_MODULE(NULL, kmscon_bbulk_load, kmscon_bbulk_unload, NULL);
|