summaryrefslogblamecommitdiffstats
path: root/src/core/hle/hle.h
blob: 23859e1296d8b5fc026708f80418102d7edba59d (plain) (tree)
1
2
3
4
5
6
                                        
                                            
                                          


            






                                
               
 
                                    
                           
                        
 
            

                
              
// 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 IsReschedulePending();
void DoneRescheduling();

void Init();
void Shutdown();

} // namespace