FireBirdLib - Topfield TMS PVR TAP Programming Library
ShowMessageWin.c
Go to the documentation of this file.
1#include "libFireBird.h"
2
3void ShowMessageWin(char *title, char *lpMessage1, char *lpMessage2, dword dwDelay)
4{
6
7 char *content[4];
8
9 content[0] = title;
10 content[1] = lpMessage1;
11 content[2] = lpMessage2;
12 content[3] = NULL;
13
14 ShowMessageWindow(content, 720, 576, FNT_Size_1926, ALIGN_CENTER, RGB(156,156,156), RGB(255,255,82), RGB(230,255,230), RGB(25,41,82), dwDelay);
15
16 TRACEEXIT();
17}
void ShowMessageWin(char *title, char *lpMessage1, char *lpMessage2, dword dwDelay)
Definition: ShowMessageWin.c:3
void ShowMessageWindow(char **content, dword pos_x, dword pos_y, byte fntSize, byte align, dword bdcolor, dword titlecolor, dword msgcolor, dword bgcolor, dword delay)
#define TRACEEXIT()
Definition: libFireBird.h:1244
#define TRACEENTER()
Definition: libFireBird.h:1243