N64FlashcartMenu/src/menu/cpak_handler.h

16 lines
240 B
C
Raw Normal View History

2024-03-18 01:15:47 +01:00
/**
* @file cpak_handler.h
* @brief ControllerPak handler
* @ingroup menu
*/
#include <stdbool.h>
#include <stdint.h>
#ifndef CPAK_HANDLER_H__
#define CPAK_HANDLER_H__
2024-03-18 01:33:07 +01:00
int clone_pak_content_to_file(char *path, uint8_t port);
2024-03-18 01:15:47 +01:00
#endif