#include <dwc.h>
typedef enum {
DWC_NASLOGIN_STATE_DIRTY = 0,
DWC_NASLOGIN_STATE_IDLE,
DWC_NASLOGIN_STATE_HTTP,
DWC_NASLOGIN_STATE_SUCCESS,
DWC_NASLOGIN_STATE_ERROR,
DWC_NASLOGIN_STATE_CANCELED,
DWC_NASLOGIN_STATE_MAX
} DWCNasLoginState;
This is an enumeration type that displays the status of the authentication process of Nintendo Authentication Server.
DWC_NASLOGIN_STATE_DIRTY |
The authentication process has not been initialized. |
DWC_NASLOGIN_STATE_IDLE |
The authentication process has not started. This is a wait state. |
DWC_NASLOGIN_STATE_HTTP |
The HTTP network communications for the authentication process are running. |
DWC_NASLOGIN_STATE_SUCCESS |
The authentication process was successful. |
DWC_NASLOGIN_STATE_ERROR |
The authentication process failed. |
DWC_NASLOGIN_STATE_CANCELED |
The authentication process was cancelled. |
None.
03/27/2006 Changed the type name and the constant name
03/23/2006 Initial version
CONFIDENTIAL