PARMTYPE

typedef enum tagPARMTYPE
{
   PARAM_STRING, /* strings */
   PARAM_CHAR, /* signed character */
   PARAM_UCHAR, /* unsigned character */
   PARAM_INT16, /* signed short */
   PARAM_UINT16, /* unsigned short */
   PARAM_INT32, /* signed integer */
   PARAM_UINT32, /* unsigned integer */
   PARAM_USTRING, /* unsigned string */
} PARMTYPE, *pPARMTYPE;

The PARMTYPE data type contains the parameter types used by the Internet command functions.