• IXJCTL_CIDCW

    ioctl(ixj1, IXJCTL_CIDCW, PHONE_CID *pCID)

    Return Value

    None.

    Parameters

    A pointer to a PHONE_CID structure that contains the information you wish displayed on the CIDCW capable telephone.

    typedef struct {
            char month[3];
            char day[3];
            char hour[3];
            char min[3];
            int numlen;
            char number[11];
            int namelen;
            char name[80];
    } PHONE_CID;

    Remarks

    This transmits the FSK signals as defined by BellCore to send Caller ID on Call Waiting to devices that support it.

    See Also:

    PHONE_RING_START,

    Example:

    PHONE_CID cid;
    
    strcpy(cid.month, "07");
    strcpy(cid.day, "14");
    strcpy(cid.hour, "12");
    strcpy(cid.min, "00");
    
    strcpy(cid.name, "Ed Okerson");
    strcpy(cid.number, "4158645225");
    
    ioctl(ixj, IXJCTL_CIDCW, &cid);
     
    


    ©1996-2001 Quicknet Technologies, Inc.