mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 20:42:44 +02:00
17 lines
389 B
C
17 lines
389 B
C
/**
|
|
* @file nifm_la.h
|
|
* @brief Wrapper for using the nifm LibraryApplet (the launched applet varies).
|
|
* @author yellows8
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
#include "../types.h"
|
|
#include "../services/nifm.h"
|
|
|
|
/**
|
|
* @brief Uses \ref nifmGetResult, then on failure launches the applet.
|
|
* @param r \ref NifmRequest
|
|
*/
|
|
Result nifmLaHandleNetworkRequestResult(NifmRequest* r);
|
|
|