⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tl_res.rc

📁 该源代码是有关modem 拨号
💻 RC
字号:
#include ".\\TLConstants.pas"

STRINGTABLE
BEGIN
    TL_LINECALLSTATE_IDLE, "Modem line is idle..."
    TL_LINECALLSTATE_OFFERING, "Call has been offered..."
    TL_LINECALLSTATE_ACCEPTED, "Call has been accepted..."
    TL_LINECALLSTATE_DIALTONE, "Dialtone detected."
    TL_LINECALLSTATE_DIALING, "Dialing..."
    TL_LINECALLSTATE_RINGBACK, "Ringback..."
    TL_LINECALLSTATE_BUSY, "Line is in busy state..."
    TL_LINECALLSTATE_SPECIALINFO, "Specialinfo detected."
    TL_LINECALLSTATE_CONNECTED,"Connected."
    TL_LINECALLSTATE_PROCEEDING, "Proceeding call..."
    TL_LINECALLSTATE_ONHOLD, "The call is on hold by the switch."
    TL_LINECALLSTATE_CONFERENCED, "The call is currently a member of a multiparty conference call."
    TL_LINECALLSTATE_ONHOLDPENDCONF, "The call is currently on hold while it is being added to a conference."
    TL_LINECALLSTATE_ONHOLDPENDTRANSFER, "The call is currently on hold awaiting transfer to another number."
    TL_LINECALLSTATE_DISCONNECTED, "The remote party has disconnected from the call..."
    TL_LINECALLSTATE_UNKNOWN "The state of the call is not known."

    TL_LINEDIALTONEMODE_NORMAL, "Normal dialtone detected."
    TL_LINEDIALTONEMODE_SPECIAL, "Special dialtone detected."
    TL_LINEDIALTONEMODE_INTERNAL, "Internal dialtone detected."
    TL_LINEDIALTONEMODE_EXTERNAL, "External dialtone detected."
    TL_LINEDIALTONEMODE_UNKNOWN, "Unknown dialtone detected."
    TL_LINEDIALTONEMODE_UNAVAIL, "Dialtone is unavailable."
    TL_LINEBUSYMODE_STATION, "Line is busy because of station."
    TL_LINEBUSYMODE_TRUNK, "The busy signal indicates that a trunk or circuit is busy."
    TL_LINEBUSYMODE_UNKNOWN, "The busy signal's specific mode is currently unknown."
    TL_LINEBUSYMODE_UNAVAIL, "The busy signal's specific mode is unavailable and cannot become known."

    TL_LINEDISCONNECTMODE_NORMAL, "'Normal' disconnect request by the remote party, the call was terminated normally."
    TL_LINEDISCONNECTMODE_UNKNOWN, "The reason for the disconnect request is unknown."
    TL_LINEDISCONNECTMODE_REJECT, "The remote user has rejected the call."
    TL_LINEDISCONNECTMODE_PICKUP, "The call was picked up from elsewhere."
    TL_LINEDISCONNECTMODE_FORWARDED, "The call was forwarded by the switch."
    TL_LINEDISCONNECTMODE_BUSY, "The remote user's station is busy."
    TL_LINEDISCONNECTMODE_NOANSWER, "The remote user's station does not answer."
    TL_LINEDISCONNECTMODE_BADADDRESS, "The destination address is invalid."
    TL_LINEDISCONNECTMODE_UNREACHABLE, "The remote user could not be reached."
    TL_LINEDISCONNECTMODE_CONGESTION, "The network is congested."
    TL_LINEDISCONNECTMODE_INCOMPATIBLE, "The remote user's station equipment is incompatible for the type of call requested."
    TL_LINEDISCONNECTMODE_UNAVAIL, "The reason for the disconnect is unavailable and cannot become known later."
    TL_LINEDISCONNECTMODE_NODIALTONE, "A dial tone was not detected within a service-provider defined timeout."

    TAPILINE_LINECLOSE, "Line has been unexpectedly closed"
    TAPILINE_NOMODEMS, "There is no modem installed in your PC. You should install at least one via Control panel | Modems | Add."
    TAPILINE_AVINOTFOUND, "Unable to open TAPILine.avi"
    TAPILINE_LINEOPENED, "Line has been succesfully opened."
    TAPILINE_STOP, "Stop has been pressed"
    TAPILINE_DROP, "Try to drop call... (takes several seconds)"
    TAPILINE_DROPOK, "Call has been dropped."
    TAPILINE_CLOSE, "Try to close line... (takes several seconds)"
    TAPILINE_CLOSEOK, "Line has been closed."
    TAPILINE_LINEUNAVAIL, "Line unavailable"
    TAPILINE_LINENAMEEMPTY, "Line Name is Empty"
    TAPILINE_LINEUNNAMED, "Line unnamed"
    TAPILINE_DOESNTSUPPORTVOICE, "Current line verification: doesn't support LINEBEARERMODE_VOICE"
    TAPILINE_DOESNTSUPPORTDATAMODEM, "Current line verification: doesn't support LINEMEDIAMODE_DATAMODEM"
    TAPILINE_DOESNTSUPPORTMAKECALL, "Current line verification: doesn't support LINEFEATURE_MAKECALL"
    TAPILINE_LINEINUSE, "Current line verification: line is already in use by a non-TAPI app or by another Service Provider."
    TAPILINE_ADDDOESNTSUPPORTMAKECALL, "Current line verification: address make call feature is not available."
    TAPILINE_MODEMCONNECTED, "Modem already connected."
    TAPILINE_TIME, "Elapsed time: "
    TAPILINE_CALLARRIVES, "Call arrives in system..."
    TAPILINE_PASSRING, "Pass by %d ring(s)..."
    TAPILINE_LINEOPEN, "Try to open line... (takes several seconds)"
    TAPILINE_LINENOTUSEABLE_ERROR, "Current line verification: Line is not usable."

    TAPILINE_ERR_CONNECTIONINTERNAL, "An error occured on connection internal."
    TAPILINE_ERR_UNABLETOANSWER, "Unable to answer to call."
    TAPILINE_ERR_DEALOCATE, "Unable to dealocate a call."
    TAPILINE_ERR_REPLY, "An error occured on reply."
    TAPILINE_ERR_NOSELECTEDLINE, "You must select TAPI compatible line"
    TAPILINE_ERR_LINENOTOPEN, "You must open TAPI line at first"
    TAPILINE_ERR_ALREADYEXISTS, "TAPILine component already exists in this process."
    TAPILINE_ERR_COMERROR, "COM Error:"
    TAPILINE_ERR_COMREADING, "Error reading from COM port."
    TAPILINE_ERR_COMWRITING, "Error writing from COM port."
    TAPILINE_ERR_COMDISCONNECT, "Disconnect occured."
    TAPILINE_ERR_READTIMEOUT, "Timeout during read operation."
    TAPILINE_ERR_WRITETIMEOUT, "Timeout during write operation."
    TAPILINE_ERR_CONNECTIONBROKENREAD, "Connection has been broken during read."
    TAPILINE_ERR_READWHILEWAIT, "Error reading from com port while waiting"
    TAPILINE_ERR_CONNECTIONBROKENWRITE, "Connection has been broken during write."
    TAPILINE_ERR_WRITEWHILEWAIT, "Error writing to com port while waiting"

    TL_CE_BREAK, "The hardware detected a break condition."
    TL_CE_DNS, "Windows 95 only: A parallel device is not selected."
    TL_CE_FRAME, "The hardware detected a framing error."
    TL_CE_IOE, "An I/O error occurred during communications with the device."
    TL_CE_MODE, "The requested mode is not supported, or the hFile parameter is invalid. If this value is specified, it is the only valid error."
    TL_CE_OOP, "Windows 95 only: A parallel device signaled that it is out of paper."
    TL_CE_OVERRUN, "A character-buffer overrun has occurred. The next character is lost."
    TL_CE_PTO, "Windows 95 only: A time-out occurred on a parallel device."
    TL_CE_RXOVER, "An input buffer overflow has occurred. There is either no room in the input buffer, or a character was received after the end-of-file (EOF) character."
    TL_CE_RXPARITY, "The hardware detected a parity error."
    TL_CE_TXFULL, "The application tried to transmit a character, but the output buffer was full."
END

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -