mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-23 05:12:39 +02:00
19 lines
322 B
C
19 lines
322 B
C
/**
|
|
* @file nifm.h
|
|
* @brief Network interface service IPC wrapper.
|
|
* @author shadowninja108
|
|
* @copyright libnx Authors
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "../kernel/ipc.h"
|
|
#include "../kernel/detect.h"
|
|
|
|
#include "../services/sm.h"
|
|
|
|
Result nifmInitialize(void);
|
|
void nifmExit(void);
|
|
|
|
Result nifmGetCurrentIpAddress(u32* out);
|