This repository has been archived on 2022-05-31. You can view files and clone it, but cannot push or open issues or pull requests.

16 lines
462 B
C
Raw Normal View History

2017-11-02 15:11:55 +01:00
/*
sender.h
Handles commands from arm11 processes, then sends them to Process9, and replies to arm11 processes the replies received from Process9 (=> receiver.c) (except for PXISRV11).
2020-04-25 13:26:21 +01:00
(c) TuxSH, 2016-2020
2017-11-02 15:11:55 +01:00
This is part of 3ds_pxi, which is licensed under the MIT license (see LICENSE for details).
*/
#pragma once
#include "common.h"
Result sendPXICmdbuf(Handle *additionalHandle, u32 serviceId, u32 *buffer);
void sender(void);
void PXISRV11Handler(void);