mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-14 12:58:56 +00:00
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;
|
||
|
};
|