mupen64plus-oldsvn/main/vcr.h
John Chadwick 3b1b190515 More modifications
Gets the GUI up but glN64 is rebroken since i screwed up commits so it's not ready for gameplay yet (unless this actually fixes the way plugins work in Win32, which I haven't tested yet.)
2008-04-18 01:03:50 +00:00

28 lines
628 B
C

#ifndef __VCR_H__
#define __VCR_H__
#ifdef VCR_SUPPORT
#include <specific.h>
#include "plugin.h"
extern void VCR_getKeys( int Control, BUTTONS *Keys );
extern void VCR_updateScreen();
extern void VCR_aiDacrateChanged( int SystemType );
extern void VCR_aiLenChanged();
extern int VCR_startRecord( const char *filename );
extern int VCR_stopRecord();
extern int VCR_startPlayback( const char *filename );
extern int VCR_stopPlayback();
extern int VCR_startCapture( const char *recFilename, const char *aviFilename );
extern int VCR_stopCapture();
extern void VCR_coreStopped();
#endif // VCR_SUPPORT
#endif // __VCR_H__