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