mirror of
https://github.com/libretro/Play-.git
synced 2024-11-27 18:50:28 +00:00
11 lines
184 B
C++
11 lines
184 B
C++
#pragma once
|
|
|
|
#include "Types.h"
|
|
|
|
class CSifModule
|
|
{
|
|
public:
|
|
virtual ~CSifModule() = default;
|
|
virtual bool Invoke(uint32, uint32*, uint32, uint32*, uint32, uint8*) = 0;
|
|
};
|