1 /*****************************************************************************\
2      Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
3                 This file is licensed under the Snes9x License.
4    For further information, consult the LICENSE file in the root directory.
5 \*****************************************************************************/
6 
7 #ifndef _LOGGER_H_
8 #define _LOGGER_H_
9 
10 void S9xResetLogger(void);
11 void S9xCloseLogger(void);
12 void S9xVideoLogger(void *, int, int, int, int);
13 void S9xAudioLogger(void *, int);
14 
15 #endif
16