mirror of
https://github.com/joel16/uofw.git
synced 2024-11-23 11:39:50 +00:00
19 lines
568 B
C
19 lines
568 B
C
/* Copyright (C) 2011 - 2016 The uOFW team
|
|
See the file COPYING for copying permission.
|
|
*/
|
|
|
|
/**
|
|
* uofw/include/utility/utility_module.h
|
|
*
|
|
*/
|
|
|
|
#ifndef UTILITY_MODULE_H
|
|
#define UTILITY_MODULE_H
|
|
|
|
#define SCE_UTILITY_MODULE_ERROR_INVALID_ID 0x80111101
|
|
#define SCE_UTILITY_MODULE_ERROR_ALREADY_LOADED 0x80111102
|
|
#define SCE_UTILITY_MODULE_ERROR_NOT_LOADED 0x80111103
|
|
#define SCE_UTILITY_MODULE_ERROR_CANNOT_START 0x80111104
|
|
#define SCE_UTILITY_MODULE_ERROR_CANNOT_STOP 0x80111105
|
|
|
|
#endif /* UTILITY_MODULE_H */ |