![]() |
DVBCore
20.3.0
DVBCore Documentation
|
PVR messages database access functions header file. More...
#include "techtype.h"
Go to the source code of this file.
Functions | |
BOOLEAN | STB_PVRInitialiseMessages (void) |
Initialises file that provides messages for recording er. More... | |
BOOLEAN | STB_PVRAddMessage (U8BIT *message) |
Adds a message to the end of the list of existing messages. More... | |
BOOLEAN | STB_PVRDeleteMessage (U16BIT handle) |
Deletes a message from the list. More... | |
BOOLEAN | STB_PVRCheckMessages (void) |
Check for new messages and clear the new message flag. More... | |
U16BIT | STB_PVRGetNumMessages (void) |
Returns the number of messages. More... | |
U16BIT | STB_PVRGetMessages (U16BIT **handle_array) |
Returns an allocated array of the message handles and number of messages currently in the list. More... | |
BOOLEAN | STB_PVRGetMessageInfo (U16BIT handle, U16BIT *date, U8BIT *hour, U8BIT *min) |
Gets date/time for the message with the given handle. More... | |
U8BIT * | STB_PVRGetMessageText (U16BIT handle) |
Returns a pointer to the text for the message with the given handle. More... | |
BOOLEAN STB_PVRAddMessage | ( | U8BIT * | message | ) |
Adds a message to the end of the list of existing messages.
message | - The message to be written |
Definition at line 111 of file stbpvrmsg.c.
BOOLEAN STB_PVRCheckMessages | ( | void | ) |
Check for new messages and clear the new message flag.
Definition at line 191 of file stbpvrmsg.c.
BOOLEAN STB_PVRDeleteMessage | ( | U16BIT | handle | ) |
Deletes a message from the list.
handle | - message handle |
Definition at line 242 of file stbpvrmsg.c.
BOOLEAN STB_PVRGetMessageInfo | ( | U16BIT | handle, |
U16BIT * | date, | ||
U8BIT * | hour, | ||
U8BIT * | min | ||
) |
Gets date/time for the message with the given handle.
handle | - message handle |
date | - pointer to value in which to return the date of the message |
hour | - pointer to value in which to return the hour of the message |
min | - pointer to value in which to return the min of the message |
Definition at line 361 of file stbpvrmsg.c.
U16BIT STB_PVRGetMessages | ( | U16BIT ** | handle_array | ) |
Returns an allocated array of the message handles and number of messages currently in the list.
handle_array | - pointer to an array that's allocated by the function and is filled with the handles of all messages |
Definition at line 311 of file stbpvrmsg.c.
U8BIT* STB_PVRGetMessageText | ( | U16BIT | handle | ) |
Returns a pointer to the text for the message with the given handle.
handle | - message handle |
Definition at line 397 of file stbpvrmsg.c.
U16BIT STB_PVRGetNumMessages | ( | void | ) |
Returns the number of messages.
Definition at line 209 of file stbpvrmsg.c.
BOOLEAN STB_PVRInitialiseMessages | ( | void | ) |
Initialises file that provides messages for recording er.
None |
Definition at line 85 of file stbpvrmsg.c.