mirror of
https://github.com/Lorenzooone/cc3dsfs.git
synced 2026-03-28 13:15:25 -05:00
* Implement USB for Old DS and 3DS CCs * Update Readme and everything else to account for new devices * Handle no serial number * Reduce jitter on lower powered devices Thanks to https://github.com/nn9dev and loopy for older CCs testing There seem to be slowdowns on Windows when using the older CCs. Will need to figure that out.
18 lines
567 B
C++
Executable File
18 lines
567 B
C++
Executable File
#ifndef __DEVICECAPTURE_HPP
|
|
#define __DEVICECAPTURE_HPP
|
|
|
|
#include "utils.hpp"
|
|
#include "hw_defs.hpp"
|
|
#include "capture_structs.hpp"
|
|
#include "frontend.hpp"
|
|
|
|
void capture_init();
|
|
void capture_close();
|
|
|
|
bool connect(bool print_failed, CaptureData* capture_data, FrontendData* frontend_data);
|
|
void captureCall(CaptureData* capture_data);
|
|
void capture_error_print(bool print_failed, CaptureData* capture_data, std::string error_string);
|
|
uint64_t get_audio_n_samples(CaptureData* capture_data, uint64_t read);
|
|
uint64_t get_video_in_size(CaptureData* capture_data);
|
|
#endif
|