mirror of
https://github.com/joel16/uofw.git
synced 2024-11-23 11:39:50 +00:00
22 lines
765 B
C
22 lines
765 B
C
/* Copyright (C) 2011 - 2016 The uOFW team
|
|
See the file COPYING for copying permission.
|
|
*/
|
|
|
|
/**
|
|
* uofw/include/utility/utility_netparam.h
|
|
*
|
|
*/
|
|
|
|
#ifndef UTILITY_NETPARAM_H
|
|
#define UTILITY_NETPARAM_H
|
|
|
|
/* Net_Param utility specific error codes (0x80110600 - 0x801106ff). */
|
|
|
|
#define SCE_UTILITY_NET_PARAM_ERROR_NO_SUCH_CNF 0x80110601
|
|
#define SCE_UTILITY_NET_PARAM_ERROR_INVALID_ID 0x80110602
|
|
#define SCE_UTILITY_NET_PARAM_ERROR_INVALID_POINTER 0x80110603
|
|
#define SCE_UTILITY_NET_PARAM_ERROR_INVALID_CODE 0x80110604
|
|
#define SCE_UTILITY_NET_PARAM_ERROR_INVALID_VALUE 0x80110605
|
|
#define SCE_UTILITY_NET_PARAM_ERROR_UNEXPECTED_PARAMTYPE 0x80110606
|
|
|
|
#endif /* UTILITY_NETPARAM_H */ |