mirror of
https://frontier.innolan.net/github/AmigaExamples.git
synced 2026-09-12 17:21:57 +00:00
20 lines
350 B
C
20 lines
350 B
C
#pragma once
|
|
|
|
#define MAX_PALETTE 32
|
|
|
|
typedef struct {
|
|
int width;
|
|
int height;
|
|
int maxColors;
|
|
int outputPalette;
|
|
int outputMask;
|
|
char* overridePalette;
|
|
int quantize;
|
|
int verbose;
|
|
char** argv;
|
|
} imagecon_config_t;
|
|
|
|
extern imagecon_config_t config;
|
|
extern void abort_(const char * s, ...);
|
|
extern png_bytep* png_read(char* file_name);
|