mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-27 11:00:50 +00:00
850102bbdc
Movies: Rewrote format to support all IO devices and console types Netplay: Now supports all IO devices and console types
9 lines
139 B
C++
9 lines
139 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
|
|
class IBarcodeReader
|
|
{
|
|
public:
|
|
virtual void InputBarcode(uint64_t barcode, uint32_t digitCount) = 0;
|
|
};
|