00001
00002 #ifndef ERRORCODES_V1_04_01_H_
00003 #define ERRORCODES_V1_04_01_H_
00004
00005 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
00006 # pragma once
00007 #endif
00008
00009 namespace tecgraf { namespace ftc { namespace v1_04_01
00010 {
00011 namespace ErrorCodes {
00012
00016 enum ErrorCode
00017 {
00018 ok = 0
00019 , failure = -1
00020 , invalid_key = -2
00021 , file_not_found = -3
00022 , no_permission = -4
00023 , file_locked = -5
00024 , max_clients_reached = -6
00025 , file_not_open = -7
00026 , read_only = -8
00027 , invalid_version = -9
00028 , end_of_file = -10
00029 , unsupported_operation = -11
00030 , unknown_error = -12
00031 , invalid_protocol_message = -13
00032 };
00033
00034 }
00035
00036 }}}
00037
00038 #endif
00039