[Contents] [Index] [Help] [Browse <] [Browse >]


amarquee.library/QErrorName             amarquee.library/QErrorName

   NAME
    QErrorName - Returns an ASCII string describing a QERROR_* code

   SYNOPSIS
    #include 

    char * QErrorName(LONG errno)

   FUNCTION
    Returns a pointer to a string that describes the QERROR_* code
    passed in as an argument.
    
   INPUTS
    errno - a QERROR_* error code.

   RESULTS
    Pointer to a string describing the error.  This string is owned
    by amarquee.library and should be considered read-only.  It will
    be valid until amarquee.library is closed.
    
   EXAMPLE
    printf("Error QERROR_NO_CLIENT_MEM means %s\n",
       QErrorName(QERROR_NO_CLIENT_MEM));
    
   AREXX EXAMPLE
    say "Error QERROR_NO_CLIENT_MEM means: " || QErrorName(QERROR_NO_CLIENT_MEM)
    

Converted on 24 Mar 2002 with RexxDoesAmigaGuide2HTML 2.1e(private) by Michael Ranner.