nes_game.h 455 B

12345678910111213
  1. /*===================================================================*/
  2. /* nes_game.h : The function which depends on a system */
  3. /*===================================================================*/
  4. #ifndef NES_GAME_H_INCLUDED
  5. #define NES_GAME_H_INCLUDED
  6. #include "nes_core.h"
  7. int Start_Nes(char *filename);
  8. void Close_Nes(void);
  9. void ZoomNes(int bfullScreen, unsigned int u32Width, unsigned int u32Height);
  10. #endif /* NES_GAME_H_INCLUDED */