libnx/nx/include/switch/services/nifm.h
shadowninja108 84408ba5b9 Cleanup/Refcounting
Added nifm prefixes
Added refcounting
Removed internal methods from include
Cleaned up spacing, comments
2018-06-03 17:08:46 -07:00

23 lines
375 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"
typedef struct {
Service s;
} IGeneralService;
Result nifmInitialize(void);
void nifmExit(void);
Result nifmGetCurrentIpAddress(u32* out);