mirror of
https://github.com/mupen64plus/mupen64plus-oldsvn.git
synced 2025-04-02 10:52:35 -04:00
16 lines
247 B
C
16 lines
247 B
C
/*
|
|
* GUI interface functions
|
|
*/
|
|
|
|
#ifndef __GUI_H__
|
|
#define __GUI_H__
|
|
|
|
#include "plugin.h"
|
|
|
|
// displays plugin configure dialog
|
|
void configure( SController *controller );
|
|
|
|
// displays plugin about dialog
|
|
void about(void);
|
|
|
|
#endif /* __GUI_H__ */
|