mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-05 03:05:04 +00:00
15 lines
265 B
C++
15 lines
265 B
C++
#pragma once
|
|
|
|
#include "types.h"
|
|
#include "result.h"
|
|
|
|
namespace nn { namespace nifm {
|
|
|
|
Result Initialize();
|
|
void SubmitNetworkRequest();
|
|
void SubmitNetworkRequestAndWait();
|
|
void CancelNetworkRequest();
|
|
bool IsNetworkRequestOnHold();
|
|
bool IsNetworkAvailable();
|
|
|
|
} }
|