mirror of
https://github.com/mupen64plus/mupen64plus-oldsvn.git
synced 2025-04-02 10:52:35 -04:00
17 lines
266 B
C
17 lines
266 B
C
#ifndef VIDEO_H
|
|
#define VIDEO_H
|
|
|
|
#ifndef __LINUX__
|
|
#include <windows.h>
|
|
#else
|
|
# include "../main/winlnxdefs.h"
|
|
#endif
|
|
|
|
extern char pluginName[];
|
|
|
|
extern void (*CheckInterrupts)( void );
|
|
extern char *screenDirectory;
|
|
extern char configdir[PATH_MAX];
|
|
|
|
#endif
|
|
|