mirror of
https://github.com/Lorenzooone/cc3dsfs.git
synced 2026-04-29 09:46:57 -05:00
13 lines
784 B
C++
13 lines
784 B
C++
#ifndef __USB_IS_NITRO_ACQUISITION_EMULATOR_HPP
|
|
#define __USB_IS_NITRO_ACQUISITION_EMULATOR_HPP
|
|
|
|
#include "usb_is_nitro_communications.hpp"
|
|
#include "capture_structs.hpp"
|
|
|
|
int initial_cleanup_emulator(const is_nitro_usb_device* usb_device_desc, is_nitro_device_handlers* handlers);
|
|
int EndAcquisitionEmulator(CaptureData* capture_data, ISNitroCaptureReceivedData* is_nitro_capture_recv_data, bool do_drain_frames, int start_frames, CaptureScreensType capture_type);
|
|
int EndAcquisitionEmulator(const is_nitro_usb_device* usb_device_desc, is_nitro_device_handlers* handlers, bool do_drain_frames, int start_frames, CaptureScreensType capture_type);
|
|
void is_nitro_acquisition_emulator_main_loop(CaptureData* capture_data, ISNitroCaptureReceivedData* is_nitro_capture_recv_data);
|
|
|
|
#endif
|