Illegal String Check: Constants

Definitions


#include <dwc.h>


enum DWCProfState {
    DWC_PROF_STATE_NOT_INITIALIZED          =  0,
    DWC_PROF_STATE_OPERATING,
    DWC_PROF_STATE_SUCCESS,
    DWC_PROF_STATE_FAIL,
};

enum DWCProfRegion {
    DWC_PROF_REGION_SELF                    =  0x00,
    DWC_PROF_REGION_JP                      =  0x01,
    DWC_PROF_REGION_US                      =  0x02,
    DWC_PROF_REGION_EU                      =  0x04,
    DWC_PROF_REGION_KR                      =  0x08,
    DWC_PROF_REGION_CN                      =  0x10,
    DWC_PROF_REGION_ALL                     =  0x80,
};

		

States During Illegal Name Check

DWC_PROF_STATE_NOT_INITIALIZED Uninitialized
DWC_PROF_STATE_OPERATING Currently performing HTTP communications
DWC_PROF_STATE_SUCCESS Name check succeeded
DWC_PROF_STATE_FAIL Name check failed

Enum Types Indicating the Region of the Illegal String Check

DWC_PROF_REGION_SELF In accordance with the product code
DWC_PROF_REGION_JP Japan
DWC_PROF_REGION_US North America
DWC_PROF_REGION_EU Europe
DWC_PROF_REGION_KR Korea
DWC_PROF_REGION_CN China
DWC_PROF_REGION_ALL All regions

CONFIDENTIAL