9 lines
224 B
C
9 lines
224 B
C
|
#include <gtk-4.0/gtk/gtk.h>
|
||
|
#include <assert.h>
|
||
|
|
||
|
static int run_edit_mode_val = 0;
|
||
|
|
||
|
void set_run_edit_mode (int prescribed_mode) {run_edit_mode_val = prescribed_mode;}
|
||
|
int get_run_edit_mode () {return run_edit_mode_val;}
|
||
|
|