uOFW
Reverse engineered PSP kernel 6.60.
Loading...
Searching...
No Matches
dnas_error.h
1/* Copyright (C) 2011 - 2015 The uOFW team
2 See the file COPYING for copying permission.
3*/
4
15#ifndef DNAS_ERROR_H
16#define DNAS_ERROR_H
17
18#include "common_header.h"
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24/*
25 DNAS error codes
26 SCE_ERROR_FACILITY_DNAS = 0x053
27*/
28
29#define SCE_DNAS_ERROR_OPERATION_FAILED 0x80530300
30#define SCE_DNAS_ERROR_INVALID_ARGUMENTS 0x80530301
33#ifdef __cplusplus
34}
35#endif
36
37#endif /* DNAS_ERROR_H */
38