mirror of https://github.com/PCSX2/pcsx2.git
27 lines
431 B
C
27 lines
431 B
C
|
#ifdef HAVE_CONFIG_H
|
||
|
# include <config.h>
|
||
|
#endif
|
||
|
|
||
|
#include <gtk/gtk.h>
|
||
|
|
||
|
#include "callbacks.h"
|
||
|
#include "interface.h"
|
||
|
#include "support.h"
|
||
|
|
||
|
|
||
|
void
|
||
|
on_Conf_Ok (GtkButton *button,
|
||
|
gpointer user_data)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
void
|
||
|
on_Conf_Cancel (GtkButton *button,
|
||
|
gpointer user_data)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|