1<!DOCTYPE HTML PUBLIC "-//W3C//Dtd HTML 4.01 Transitional//EN"> 2<html> 3<head> 4<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" /> 5<meta http-equiv="Content-Style-Type" content="text/css" /> 6<link rel="stylesheet" type="text/css" href="../../CSS/revolution.css" /> 7<title>ENCResult</title> 8</head> 9<body> 10 11<h1>ENCResult</h1> 12 13<h2>Syntax</h2> 14<dl><dd><pre class="construction"> 15#include <revolution/enc.h> 16 17typedef enum ENCResult 18{ 19 ENC_OK = 0, 20 ENC_ERR_NO_BUF_LEFT = -1, 21 ENC_ERR_NO_MAP_RULE = -2, 22 ENC_ERR_INVALID_PARAM = -3, 23 ENC_ERR_INVALID_FORMAT = -4, 24 ENC_ERR_UNKNOWN_ENCODING = -5, 25 ENC_ERR_UNSUPPORTED = -6, 26 ENC_ERR_NOT_LOADED = -7 27} ENCResult; 28</pre></dd></dl> 29 30<h2>Description</h2> 31<p> 32Indicates the types of errors that can occur when running functions. 33</p> 34<p> 35Refer to the function return values for details on the individual error types. 36</p> 37<p><b><code>ENC_ERR_NOT_LOADED</code> was eliminated in RevolutionSDK 3.2.</b><br>Its definition has been retained so that it is not mistakenly replaced by another error in future revisions of the library, which will include a number of new error definitions.</p> 38 39 40<h2>See Also</h2> 41<p> 42None. 43</p> 44 45<h2>Revision History</h2> 46<p> 472008/03/31 Eliminated <code>ENC_ERR_NOT_LOADED</code>.<br>2007/02/05 Added <CODE>ENC_ERR_NOT_LOADED</CODE>.<br>2006/10/19 Initial version.<br> 48</p> 49 50<hr><p>CONFIDENTIAL</p></body> 51</html>