mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-28 07:50:58 +02:00
provide compatibility with cs_api_init() and cs_api_exit()
This contains a DirectFB wrapper, needed to make the framebuffer
transparent. The framebuffer itself is usable without DFB.
Additionally it sets up the system for a changed RC address in "BIOS".
git-svn-id: http://www.coolstreamtech.de/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@961 e54a6e83-5905-42d5-8d5c-058d10e6a962
Origin commit data
------------------
Branch: master
Commit: d580fcb651
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2010-12-25 (Sat, 25 Dec 2010)
------------------
This commit was generated by Migit
18 lines
255 B
C
18 lines
255 B
C
#ifndef __INIT_TD_H
|
|
#define __INIT_TD_H
|
|
void init_td_api();
|
|
void shutdown_td_api();
|
|
|
|
inline void cs_api_init()
|
|
{
|
|
init_td_api();
|
|
};
|
|
|
|
inline void cs_api_exit()
|
|
{
|
|
shutdown_td_api();
|
|
};
|
|
#define cs_malloc_uncached malloc
|
|
#define cs_free_uncached free
|
|
#endif
|