/* common.h (c) TuxSH, 2017-2020 This is part of 3ds_sm, which is licensed under the MIT license (see LICENSE for details). */ #pragma once #include <3ds.h> #include #define KERNEL_VERSION_MINOR (GET_VERSION_MINOR(osGetKernelVersion())) #define IS_PRE_7X (KERNEL_VERSION_MINOR < 39) #define IS_PRE_93 (KERNEL_VERSION_MINOR < 48) extern u32 nbSection0Modules; extern Handle resumeGetServiceHandleOrPortRegisteredSemaphore; struct SessionDataList; typedef struct SessionData { struct SessionData *prev, *next; struct SessionDataList *parent; u32 pid; u32 replayCmdbuf[4]; Handle busyClientPortHandle; Handle handle; bool isSrvPm; } SessionData; typedef struct SessionDataList { SessionData *first, *last; } SessionDataList; extern SessionDataList sessionDataInUseList, freeSessionDataList; extern SessionDataList sessionDataWaitingForServiceOrPortRegisterList, sessionDataToWakeUpAfterServiceOrPortRegisterList; extern SessionDataList sessionDataWaitingPortReadyList; static inline void panic(void) { svcBreak(USERBREAK_PANIC); for(;;) svcSleepThread(0); } static inline void assertSuccess(Result res) { if(R_FAILED(res)) panic(); }