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);
void get_palette(PALETTE p);
PALETTE pal; ... get_palette(pal);