SetUserError

事前定義変数_LastErrorを、ERR_USER_ERROR_FIRST + user_errorに等しい値に設定します

void   SetUserError ushort user_error //エラー番号   );
       

パラメーター

user_error

[in] ユーザーが設定したエラー番号。

戻り値

戻り値はありません。

注意

SetUserError(user_error)関数を使用してエラーを設定すると、GetLastError()ERR_USER_ERROR_FIRST + user_errorに等しい値を返します

例:

void OnStart()
  {
//— set error number 65537=(ERR_USER_ERROR_FIRST +1)
   SetUserError(1);
//— get last error code
   Print(“GetLastError = “,GetLastError());
//— Result
//— GetLastError = 65537
  }

Leave a Reply

Your email address will not be published. Required fields are marked *

CAPTCHA


You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code class="" title="" data-url=""> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> <pre class="" title="" data-url=""> <span class="" title="" data-url="">