get_palette(3) - Linux man page

Name

get_palette - Retrieves the entire palette of 256 colors. Allegro game programming library.

Synopsis

#include <allegro.h>

void get_palette(PALETTE p);

Description

Retrieves the entire palette of 256 colors. You should provide an array of 256 RGB structures to store it in. Example:
PALETTE pal;
...
get_palette(pal);

See Also

get_palette_range(3), get_color(3), set_palette(3)