first try at building "libneutrino-hal" standalone

Origin commit data
------------------
Branch: master
Commit: 245c511981
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2012-02-03 (Fri, 03 Feb 2012)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2012-02-03 23:49:43 +01:00
parent dc0bc30cd7
commit dfdbdf2f48
19 changed files with 541 additions and 0 deletions

7
include/audio_td.h Normal file
View File

@@ -0,0 +1,7 @@
#if HAVE_TRIPLEDRAGON
#include "../libtriple/audio_td.h"
#elif HAVE_SPARK_HARDWARE
#include "../libspark/audio_lib.h"
#else
#error neither HAVE_TRIPLEDRAGON nor HAVE_SPARK_HARDWARE defined
#endif

7
include/ca_cs.h Normal file
View File

@@ -0,0 +1,7 @@
#if HAVE_TRIPLEDRAGON
#include "../libtriple/ca_cs.h"
#elif HAVE_SPARK_HARDWARE
#include "../libspark/ca_cs.h"
#else
#error neither HAVE_TRIPLEDRAGON nor HAVE_SPARK_HARDWARE defined
#endif

7
include/cs_api.h Normal file
View File

@@ -0,0 +1,7 @@
#if HAVE_TRIPLEDRAGON
#include "../libtriple/cs_api.h"
#elif HAVE_SPARK_HARDWARE
#include "../libspark/cs_api.h"
#else
#error neither HAVE_TRIPLEDRAGON nor HAVE_SPARK_HARDWARE defined
#endif

1
include/dmx_cs.h Normal file
View File

@@ -0,0 +1 @@
#include "dmx_td.h"

7
include/dmx_td.h Normal file
View File

@@ -0,0 +1,7 @@
#if HAVE_TRIPLEDRAGON
#include "../libtriple/dmx_td.h"
#elif HAVE_SPARK_HARDWARE
#include "../libspark/dmx_lib.h"
#else
#error neither HAVE_TRIPLEDRAGON nor HAVE_SPARK_HARDWARE defined
#endif

2
include/init_cs.h Normal file
View File

@@ -0,0 +1,2 @@
#warning using init_cs.h from libneutrino-hal
#include "init_td.h"

5
include/init_td.h Normal file
View File

@@ -0,0 +1,5 @@
#ifndef __INIT_TD_H
#define __INIT_TD_H
void init_td_api();
void shutdown_td_api();
#endif

7
include/lt_debug.h Normal file
View File

@@ -0,0 +1,7 @@
#if HAVE_TRIPLEDRAGON
#include "../libtriple/playback_td.h"
#elif HAVE_SPARK_HARDWARE
#include "../libspark/playback_lib.h"
#else
#error neither HAVE_TRIPLEDRAGON nor HAVE_SPARK_HARDWARE defined
#endif

23
include/mmi.h Normal file
View File

@@ -0,0 +1,23 @@
#ifndef __MMI_H_
#define __MMI_H_
#define MAX_MMI_ITEMS 40
#define MAX_MMI_TEXT_LEN 255
#define MAX_MMI_CHOICE_TEXT_LEN 255
typedef struct {
int choice_nb;
char title[MAX_MMI_TEXT_LEN];
char subtitle[MAX_MMI_TEXT_LEN];
char bottom[MAX_MMI_TEXT_LEN];
char choice_item[MAX_MMI_ITEMS][MAX_MMI_CHOICE_TEXT_LEN];
} MMI_MENU_LIST_INFO;
typedef struct {
int blind;
int answerlen;
char enguiryText[MAX_MMI_TEXT_LEN];
} MMI_ENGUIRY_INFO;
#endif // __MMI_H_

1
include/playback.h Normal file
View File

@@ -0,0 +1 @@
#include "playback_td.h"

7
include/playback_td.h Normal file
View File

@@ -0,0 +1,7 @@
#if HAVE_TRIPLEDRAGON
#include "../libtriple/playback_td.h"
#elif HAVE_SPARK_HARDWARE
#include "../libspark/playback_lib.h"
#else
#error neither HAVE_TRIPLEDRAGON nor HAVE_SPARK_HARDWARE defined
#endif

7
include/pwrmngr.h Normal file
View File

@@ -0,0 +1,7 @@
#if HAVE_TRIPLEDRAGON
#include "../libtriple/pwrmngr.h"
#elif HAVE_SPARK_HARDWARE
#include "../libspark/pwrmngr.h"
#else
#error neither HAVE_TRIPLEDRAGON nor HAVE_SPARK_HARDWARE defined
#endif

7
include/record_td.h Normal file
View File

@@ -0,0 +1,7 @@
#if HAVE_TRIPLEDRAGON
#include "../libtriple/record_td.h"
#elif HAVE_SPARK_HARDWARE
#include "../libspark/record_lib.h"
#else
#error neither HAVE_TRIPLEDRAGON nor HAVE_SPARK_HARDWARE defined
#endif

7
include/video_td.h Normal file
View File

@@ -0,0 +1,7 @@
#if HAVE_TRIPLEDRAGON
#include "../libtriple/video_td.h"
#elif HAVE_SPARK_HARDWARE
#include "../libspark/video_lib.h"
#else
#error neither HAVE_TRIPLEDRAGON nor HAVE_SPARK_HARDWARE defined
#endif