mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 04:22:50 +02:00
17 lines
492 B
C
17 lines
492 B
C
typedef enum
|
|
{
|
|
VISERVTYPE_Default = -1,
|
|
VISERVTYPE_Application = 0,
|
|
VISERVTYPE_System = 1,
|
|
VISERVTYPE_Manager = 2,
|
|
} viServiceType;
|
|
|
|
Result viInitialize(viServiceType servicetype);
|
|
void viExit(void);
|
|
Handle viGetSessionService(void);
|
|
Handle viGetSession_IApplicationDisplayService(void);
|
|
Handle viGetSession_IHOSBinderDriverRelay(void);
|
|
Handle viGetSession_ISystemDisplayService(void);
|
|
Handle viGetSession_IManagerDisplayService(void);
|
|
Handle viGetSession_IHOSBinderDriverIndirect(void);
|