gimp/plug-ins/gimpressionist/placement.h
Shlomi Fish 5559b6223e fixed bug #148088: ("Gimpressioinst crashes if given malicious presets
* plug-ins/gimpressionist/: fixed bug #148088: ("Gimpressioinst crashes if
given malicious presets with out of range values, in the radio buttons
group numeric values: "placetype", "orienttype", etc. ").

This was done by adding clamps to the relevant values in the preset.
2004-07-25 14:29:27 +00:00

16 lines
275 B
C

#ifndef __PLACEMENT_H
#define __PLACEMENT_H
enum PLACEMENT_TYPE_ENUM
{
PLACEMENT_TYPE_RANDOM = 0,
PLACEMENT_TYPE_EVEN_DIST = 1,
};
void place_store (void);
void place_restore (void);
void create_placementpage (GtkNotebook *);
int place_type_input (int in);
#endif