Service/NFC: stub GetTagInRangeEvent

Fix Fatal Error in Mini-Mario & Friends - amiibo Challenge
This commit is contained in:
mailwl
2016-12-29 23:38:47 +03:00
parent f556d6ee90
commit f2985f7080
7 changed files with 44 additions and 0 deletions

View File

@@ -5,10 +5,27 @@
#pragma once
namespace Service {
class Interface;
namespace NFC {
/**
* NFC::GetTagInRangeEvent service function
* Inputs:
* 0 : Header code [0x000B0000]
* Outputs:
* 1 : Result of function, 0 on success, otherwise error code
* 2 : Copy handle descriptor
* 3 : Event Handle
*/
void GetTagInRangeEvent(Interface* self);
/// Initialize all NFC services.
void Init();
/// Shutdown all NFC services.
void Shutdown();
} // namespace NFC
} // namespace Service