16 lines
381 B
C#
16 lines
381 B
C#
namespace rail
|
|
{
|
|
public interface IRailScreenshotHelper
|
|
{
|
|
IRailScreenshot CreateScreenshotWithRawData(byte[] rgb_data, uint len, uint width, uint height);
|
|
|
|
IRailScreenshot CreateScreenshotWithLocalImage(string image_file, string thumbnail_file);
|
|
|
|
void AsyncTakeScreenshot(string user_data);
|
|
|
|
void HookScreenshotHotKey(bool hook);
|
|
|
|
bool IsScreenshotHotKeyHooked();
|
|
}
|
|
}
|