| Table of contents | 
char* dscGetErrorString(BYTE error_code)
| Name | Description | 
|---|---|
| error_code | The error code to translate. | 
The char* error string corresponding to the given error code
    ERRPARAMS errparams;
    if ((result = dscInit(DSC_VERSION)) != DE_NONE)
    {
        dscGetLastError(&errparams);
        fprintf(stderr, "dscInit failed: %s (%s)\n", 
                dscGetErrorString(result), errparams.errstring);
        return result;
    }
 
 This page was last modified 11:18, 12 Feb 2004.
Copyright (c) 2004 Diamond Systems.  All Rights Reserved.