• Capabilities List
  • ioctl(ixj, PHONE_CAPABILITIES_LIST, struct phone_capability *pCap)

    Return Value

    None.

    Parameters

    A pointer to an array of phone_capability structures.

    typedef enum {
            vendor = 0,
            device,
            port,
            codec,
            dsp
    } phone_cap;
    
    struct phone_capability {
            char desc[80];
            phone_cap captype;
            int cap;
            int handle;
    };

    Remarks

    The PHONE_CAPABILITIES_LIST will fill an array of capability structures with all of it's capabilities.

    See Also:

    PHONE_CAPABILITIES, PHONE_CAPABILITIES_CHECK, PHONE_QUERY_CODEC

    Example:

    struct phone_capability caplist[30];
    
    ioctl(ixj, PHONE_CAPABILITIES_LIST, &caplist);
    


  • ©1996-2001 Quicknet Technologies, Inc.