rpcsx/rpcs3/Emu/Cell/Modules/cellHttpUtil.h
AnnieL dc34d5b350 cell: add several error (return) codes and definitions (#1914)
* cellHttp: add error codes

Adds error codes for cellHttp and cellHttps

* libDaisy: adds error codes and definitions

Adds error codes, assertations and definitions for cellDaisy.

* cellHttpUtil: add error codes

Adds error codes for cellHttpUtil.

* cellCelp8Enc: moves error codes, adds definitions

Moves error codes to cellCelp8Enc.h, adds some definitions.

* cellCelpEnc: moves error codes, adds definitions

* cellJpgEnc: adds error codes and definitions

Moves the existant error codes to cellJpgEnc.h and adds more error codes
/ definitions.

* cellVoice: moves error codes, adds definitions

Moves error codes to cellVoice.h, adds most cellVoice definitions

* Fix typos
2016-07-15 00:02:07 +03:00

21 lines
616 B
C++

#pragma once
namespace vm { using namespace ps3; }
// libHttp_Util: 0x80711001 - 0x807110ff
// Error Codes
enum
{
CELL_HTTP_UTIL_ERROR_NO_MEMORY = 0x80711001,
CELL_HTTP_UTIL_ERROR_NO_BUFFER = 0x80711002,
CELL_HTTP_UTIL_ERROR_NO_STRING = 0x80711003,
CELL_HTTP_UTIL_ERROR_INSUFFICIENT = 0x80711004,
CELL_HTTP_UTIL_ERROR_INVALID_URI = 0x80711005,
CELL_HTTP_UTIL_ERROR_INVALID_HEADER = 0x80711006,
CELL_HTTP_UTIL_ERROR_INVALID_REQUEST = 0x80711007,
CELL_HTTP_UTIL_ERROR_INVALID_RESPONSE = 0x80711008,
CELL_HTTP_UTIL_ERROR_INVALID_LENGTH = 0x80711009,
CELL_HTTP_UTIL_ERROR_INVALID_CHARACTER = 0x8071100a,
};