FireBirdLib - Topfield TMS PVR TAP Programming Library
INISetRGB8.c
Go to the documentation of this file.
1#include "FBLib_ini.h"
2#include "libFireBird.h"
3
4void INISetRGB8(char *Key, byte Red, byte Green, byte Blue)
5{
7
8 char rgb[12];
9
10 sprintf(rgb, "%3.3d,%3.3d,%3.3d", Red, Green, Blue);
11 INISetString(Key, rgb);
12
13 TRACEEXIT();
14}
void INISetRGB8(char *Key, byte Red, byte Green, byte Blue)
Definition: INISetRGB8.c:4
void INISetString(char *Key, char *Value)
Definition: INISetString.c:6
#define TRACEEXIT()
Definition: libFireBird.h:1244
#define TRACEENTER()
Definition: libFireBird.h:1243