Flag: Tornado! Hurricane!

OpenRCE IDA SDK >> get_item_color

get_item_color
Category: Miscellaneous

bgcolor_t
get_item_color(ea_t ea)
Returns the color code at the specified effective address. The default color is defined in nalt.hpp as:

#define DEFCOLOR 0xFFFFFFFF

The IDC equivalent of this function is GetColor().

Examples:
#include <nalt.hpp>

bgcolor_t color_code;
int r, g, b;

color_code = get_item_color(get_screen_ea());
if (color_code != DEFCOLOR)
{
    // extract the RGB value from color_code (0xBBGGRR wonder why this is reversed)
    b = (color_code & 0xFF0000) >> 16;
    g = (color_code & 0x00FF00) >> 8;
    r = (color_code & 0x0000FF);
}

msg("color R:%d G:%d B:%d\n", r, g, b);


Related: call_system, del_item_color, ea2str, getdspace, get_input_file_path, get_item_color, get_nice_colored_name, idadir, next_not_tail(), open_url, str2ea, tag_remove

Note: You must be logged in to add notes to the IDA SDK reference manual.

There are 28,658 total registered users.


Recently Created Topics
Reverse Engineer sof...
May/24
plugin_bochs_user
May/23
Cracking Mbot With a...
May/22
I have started a new...
May/22
windbg - olly/immunity
May/14
Reverse a WinRAR pac...
May/13
Add comments to resu...
May/10
can we code script ...
May/09
Type Casting Structu...
May/07
How to Reverse Engin...
May/03


Recent Forum Posts
windbg - olly/immunity
blowcheck
Help me guys
Olivier
Reverse a WinRAR pac...
NirIzr
windbg - olly/immunity
anonymouse
Reverse a WinRAR pac...
DriEm
Add comments to resu...
phn1x
IDA Resource Viewer ...
DriEm
Add comments to resu...
qiuhan
IDA Resource Viewer ...
waleeda...
IDA Resource Viewer ...
DriEm


Recent Blog Entries
bopwt568
May/27


waleedassar
Apr/20
OllyDbg NumberOfSections Crash

icegood
Apr/13
Advanced labels plugin for ...

waleedassar
Mar/31
GetModuleFileNameEx And Inf...

waleedassar
Mar/31
OllyDbg v1.10 And Wow64

More ...


Recent Blog Comments
michaelkorshandbags on:
May/24
OllyDbg v1.10 And Hardware ...

michaelkorshandbags on:
May/24
Ariadne framework and deobf...

michaelkorshandbags on:
May/24
Portable Executable Format ...

michaelkorshandbags on:
May/24
BIOS Disassembly Ninjutsu (...

michaelkorshandbags on:
May/24
Very comfortable to enjoy g...

More ...


Imagery
SoySauce Blueprint
Jun 6, 2008

[+] expand

View Gallery (11) / Submit