mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-27 15:32:52 +02:00
* added support for internal cardreaders for future conax support
* added inactivity shutdown timer for EuP
WARNING: new libcoolstream and libOpenThreads needed.
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@925 e54a6e83-5905-42d5-8d5c-058d10e6a962
Origin commit data
------------------
Branch: ni/coolstream
Commit: b8c1fa5cc1
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2010-12-07 (Tue, 07 Dec 2010)
Origin message was:
------------------
* reworked CA menu code
* added support for internal cardreaders for future conax support
* added inactivity shutdown timer for EuP
WARNING: new libcoolstream and libOpenThreads needed.
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@925 e54a6e83-5905-42d5-8d5c-058d10e6a962
------------------
This commit was generated by Migit
24 lines
465 B
C
24 lines
465 B
C
#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_
|
|
|