syscall.h 377 B

12345678910111213141516171819
  1. // Copyright 2014 Citra Emulator Project
  2. // Licensed under GPLv2
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include "common/common_types.h"
  6. ////////////////////////////////////////////////////////////////////////////////////////////////////
  7. // Namespace Syscall
  8. namespace Syscall {
  9. typedef u32 Handle;
  10. typedef s32 Result;
  11. void Register();
  12. } // namespace