variables static, and created functions that manipulate them. Created new headers. Renamed some variables and functions to make their names more menanigful.
15 lines
241 B
C
15 lines
241 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 *);
|
|
|
|
#endif
|