mirror of
https://frontier.innolan.net/github/AmigaExamples.git
synced 2025-12-09 12:12:14 +00:00
19 lines
332 B
C
19 lines
332 B
C
#pragma once
|
|
|
|
#define MAX_PALETTE 32
|
|
|
|
typedef struct {
|
|
int width;
|
|
int height;
|
|
int maxColors;
|
|
int outputPalette;
|
|
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);
|