mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-06 02:15:18 +01:00
6b7ebb3f82
This shouldn't be directly exposed if there's already a partial API that operates on it. We can just provide the rest of that API.
24 lines
407 B
C++
24 lines
407 B
C++
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "common/common_types.h"
|
|
|
|
typedef u32 Handle;
|
|
typedef s32 Result;
|
|
|
|
const Handle INVALID_HANDLE = 0;
|
|
|
|
namespace HLE {
|
|
|
|
void Reschedule(const char *reason);
|
|
bool RescheduleIsPending();
|
|
void DoneRescheduling();
|
|
|
|
void Init();
|
|
void Shutdown();
|
|
|
|
} // namespace
|