mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-07-27 13:22:19 -05:00
Old structure: put everything in lib/include New structure: put library includes in their respective library folder. e.g. lib/NitroDWC/include/dwc.h
22 lines
308 B
C
22 lines
308 B
C
#ifndef NITROWIFI_SOCKET_H_
|
|
#define NITROWIFI_SOCKET_H_
|
|
|
|
#include <string.h>
|
|
#include <nitro/types.h>
|
|
#include <nitro/os.h>
|
|
#include <nitro/math.h>
|
|
#include <nitroWiFi/cps.h>
|
|
#include <nitroWiFi/socl.h>
|
|
#include <nitroWiFi/soc.h>
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|