mirror of
https://github.com/thug1src/thug.git
synced 2024-12-02 12:56:45 +00:00
25 lines
677 B
C
25 lines
677 B
C
/*
|
|
// ------------------------------------------------------------------------
|
|
|
|
File: libezcnf.h
|
|
|
|
headers for libezcnf.c
|
|
|
|
// ------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef _LIBEZCNF_H
|
|
#define _LIBEZCNF_H
|
|
|
|
int initEzNetCnf(void);
|
|
int exitEzNetCnf(void);
|
|
|
|
int ezNetCnfGetCount(const char *, ezNetCnfType);
|
|
int ezNetCnfGetCombinationList(char *, ezNetCnfCombinationList_t *);
|
|
ezNetCnfCombination_t *ezNetCnfGetCombination(ezNetCnfCombinationList_t *, int);
|
|
ezNetCnfCombination_t *ezNetCnfGetDefault(ezNetCnfCombinationList_t *);
|
|
int ezNetCnfGetEnvData(char *, char *, sceNetcnfifData_t *);
|
|
|
|
#endif // _LIBEZCNF_H
|
|
|