/******************************************************************************/
/*
Type:
Stock function
Function:
color_MakeColor(colorname[], a, r, g, b);
Params:
colorname[] -> Is the color name
a -> The alpha color [must be between 0 and 255]
r -> The red color [must be between 0 and 255]
g -> The green color [must be between 0 and 255]
b -> The blue color [must be between 0 and 255]
Return:
Return 0 if the function has errors else return 1
Bugs:
I found an bug with "fwrite()" function... do not make a new line!!!
Example:
color_MakeColor("COLOR_RED", 255, 255, 0, 0);
*/
/******************************************************************************/
/******************************************************************************/
/*
Type:
Stock function
Function:
color_GetError();
Params:
Return:
Return the "color_MakeColor()" error (if have)
Bugs:
Example:
color_MakeColor("COLOR_RED", 256, 255, 0, 0);
new error[100];
error = color_GetError();
printf(error);
*/
/******************************************************************************/

|
Originally Posted by On_Top_Non_Stop
#define COLOR_RED 0xAA3333AA
![]() But seriously, am I missing something? |