Tapi3Err.pas
上传用户:smiteryang
上传日期:2015-03-11
资源大小:87k
文件大小:18k
源码类别:

TAPI编程

开发平台:

Delphi

  1. {******************************************************************}
  2. {                                                                  }
  3. {       Borland Delphi Runtime Library                             }
  4. {       Telephony API interface unit - Core Error Messages         }
  5. {                                                                  }
  6. { Portions created by Microsoft are                                }
  7. { Copyright (C) 1995-1999 Microsoft Corporation.                   }
  8. { All Rights Reserved.                                             }
  9. {                                                                  }
  10. { The original file is: tapi3err.h, released  March 1999.          }
  11. { The original Pascal code is: Tapi3Err.pas, released 28 Dec 1999. }
  12. { The initial developer of the Pascal code is Marcel van Brakel    }
  13. { (brakelm@bart.nl).                                               }
  14. {     }
  15. { Portions created by Marcel van Brakel are    }
  16. { Copyright (C) 1999-2000 Marcel van Brakel.       }
  17. {                                                                  }
  18. { Contributor(s): Alan C. Moore (ACMDOC@aol.com)                   }
  19. {                 Rudy Velthuis (rvelthuis@gmx.de)                 }
  20. {                                                                  }
  21. { Obtained through:                                                }
  22. { Joint Endeavour of Delphi Innovators (Project JEDI)              }
  23. {                                                                  }
  24. { You may retrieve the latest version of this file at the Project  }
  25. { JEDI home page, located at http://delphi-jedi.org                }
  26. {                                                                  }
  27. { The contents of this file are used with permission, subject to   }
  28. { the Mozilla Public License Version 1.1 (the "License"); you may  }
  29. { not use this file except in compliance with the License. You may }
  30. { obtain a copy of the License at                                  }
  31. { http://www.mozilla.org/NPL/NPL-1_1Final.html                     }
  32. {                                                                  }
  33. { Software distributed under the License is distributed on an      }
  34. { "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or   }
  35. { implied. See the License for the specific language governing     }
  36. { rights and limitations under the License.                        }
  37. {                                                                  }
  38. {******************************************************************}
  39. unit Tapi3Err;
  40. interface
  41. //--------------------------------------------------------------------------
  42. //     Core TAPI Error messages
  43. //--------------------------------------------------------------------------
  44. //
  45. //  Values are 32 bit values layed out as follows:
  46. //
  47. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  48. //   1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
  49. //  +---+-+-+-----------------------+-------------------------------+
  50. //  |Sev|C|R|     Facility          |               Code            |
  51. //  +---+-+-+-----------------------+-------------------------------+
  52. //
  53. //  where
  54. //
  55. //      Sev - is the severity code
  56. //
  57. //          00 - Success
  58. //          01 - Informational
  59. //          10 - Warning
  60. //          11 - Error
  61. //
  62. //      C - is the Customer code flag
  63. //
  64. //      R - is a reserved bit
  65. //
  66. //      Facility - is the facility code
  67. //
  68. //      Code - is the facility's status code
  69. //
  70. //
  71. // Define the facility codes
  72. //
  73. //
  74. // Define the severity codes
  75. //
  76. const
  77. //
  78. // MessageId: TAPI_E_NOTENOUGHMEMORY
  79. //
  80. // MessageText:
  81. //
  82. //  The buffer passed in to this method was not big enough.
  83. //
  84.   TAPI_E_NOTENOUGHMEMORY           = HRESULT($80040001);
  85. //
  86. // MessageId: TAPI_E_NOITEMS
  87. //
  88. // MessageText:
  89. //
  90. //  No items exist that match the request.
  91. //
  92.   TAPI_E_NOITEMS                   = HRESULT($80040002);
  93. //
  94. // MessageId: TAPI_E_NOTSUPPORTED
  95. //
  96. // MessageText:
  97. //
  98. //  This method is not supported.
  99. //
  100.   TAPI_E_NOTSUPPORTED              = HRESULT($80040003);
  101. //
  102. // MessageId: TAPI_E_INVALIDMEDIATYPE
  103. //
  104. // MessageText:
  105. //
  106. //  The MEDIATYPE passed in to this method was invalid.
  107. //
  108.   TAPI_E_INVALIDMEDIATYPE          = HRESULT($80040004);
  109. //
  110. // MessageId: TAPI_E_OPERATIONFAILED
  111. //
  112. // MessageText:
  113. //
  114. //  The operation failed for an unspecified reason.
  115. //
  116.   TAPI_E_OPERATIONFAILED           = HRESULT($80040005);
  117. //
  118. // MessageId: TAPI_E_ALLOCATED
  119. //
  120. // MessageText:
  121. //
  122. //  The device is already in use.
  123. //
  124.   TAPI_E_ALLOCATED                 = HRESULT($80040006);
  125. //
  126. // MessageId: TAPI_E_CALLUNAVAIL
  127. //
  128. // MessageText:
  129. //
  130. //  No call appearance available.
  131. //
  132.   TAPI_E_CALLUNAVAIL               = HRESULT($80040007);
  133. //
  134. // MessageId: TAPI_E_COMPLETIONOVERRUN
  135. //
  136. // MessageText:
  137. //
  138. //  Too many call completions outstanding.
  139. //
  140.   TAPI_E_COMPLETIONOVERRUN         = HRESULT($80040008);
  141. //
  142. // MessageId: TAPI_E_CONFERENCEFULL
  143. //
  144. // MessageText:
  145. //
  146. //  The conference is full.
  147. //
  148.   TAPI_E_CONFERENCEFULL            = HRESULT($80040009);
  149. //
  150. // MessageId: TAPI_E_DIALMODIFIERNOTSUPPORTED
  151. //
  152. // MessageText:
  153. //
  154. //  The dial modifier is not supported.
  155. //
  156.   TAPI_E_DIALMODIFIERNOTSUPPORTED  = HRESULT($8004000A);
  157. //
  158. // MessageId: TAPI_E_INUSE
  159. //
  160. // MessageText:
  161. //
  162. //  The device is already in use.
  163. //
  164.   TAPI_E_INUSE                     = HRESULT($8004000B);
  165. //
  166. // MessageId: TAPI_E_INVALADDRESS
  167. //
  168. // MessageText:
  169. //
  170. //  The phone number is invalid or not properly formatted.
  171. //
  172.   TAPI_E_INVALADDRESS              = HRESULT($8004000C);
  173. //
  174. // MessageId: TAPI_E_INVALADDRESSSTATE
  175. //
  176. // MessageText:
  177. //
  178. //  Operation not permitted in current address state.
  179. //
  180.   TAPI_E_INVALADDRESSSTATE         = HRESULT($8004000D);
  181. //
  182. // MessageId: TAPI_E_INVALCALLPARAMS
  183. //
  184. // MessageText:
  185. //
  186. //  Invalid LINECALLPARAMS structure.
  187. //
  188.   TAPI_E_INVALCALLPARAMS           = HRESULT($8004000E);
  189. //
  190. // MessageId: TAPI_E_INVALCALLPRIVILEGE
  191. //
  192. // MessageText:
  193. //
  194. //  Invalid call privilege.
  195. //
  196.   TAPI_E_INVALCALLPRIVILEGE        = HRESULT($8004000F);
  197. //
  198. // MessageId: TAPI_E_INVALCALLSTATE
  199. //
  200. // MessageText:
  201. //
  202. //  Operation not permitted in current call state.
  203. //
  204.   TAPI_E_INVALCALLSTATE            = HRESULT($80040010);
  205. //
  206. // MessageId: TAPI_E_INVALCARD
  207. //
  208. // MessageText:
  209. //
  210. //  Invalid calling card.
  211. //
  212.   TAPI_E_INVALCARD                 = HRESULT($80040011);
  213. //
  214. // MessageId: TAPI_E_INVALCOMPLETIONID
  215. //
  216. // MessageText:
  217. //
  218. //  Invalid call completion ID.
  219. //
  220.   TAPI_E_INVALCOMPLETIONID         = HRESULT($80040012);
  221. //
  222. // MessageId: TAPI_E_INVALCOUNTRYCODE
  223. //
  224. // MessageText:
  225. //
  226. //  Invalid country code.
  227. //
  228.   TAPI_E_INVALCOUNTRYCODE          = HRESULT($80040013);
  229. //
  230. // MessageId: TAPI_E_INVALDEVICECLASS
  231. //
  232. // MessageText:
  233. //
  234. //  Invalid device class identifier
  235. //
  236.   TAPI_E_INVALDEVICECLASS          = HRESULT($80040014);
  237. //
  238. // MessageId: TAPI_E_INVALDIALPARAMS
  239. //
  240. // MessageText:
  241. //
  242. //  Invalid dialing parameters
  243. //
  244.   TAPI_E_INVALDIALPARAMS           = HRESULT($80040015);
  245. //
  246. // MessageId: TAPI_E_INVALDIGITS
  247. //
  248. // MessageText:
  249. //
  250. //  Invalid digits.
  251. //
  252.   TAPI_E_INVALDIGITS               = HRESULT($80040016);
  253. //
  254. // MessageId: TAPI_E_INVALGROUPID
  255. //
  256. // MessageText:
  257. //
  258. //  Invalid group pickup ID.
  259. //
  260.   TAPI_E_INVALGROUPID              = HRESULT($80040017);
  261. //
  262. // MessageId: TAPI_E_INVALLOCATION
  263. //
  264. // MessageText:
  265. //
  266. //  Invalid location ID.
  267. //
  268.   TAPI_E_INVALLOCATION             = HRESULT($80040018);
  269. //
  270. // MessageId: TAPI_E_INVALMESSAGEID
  271. //
  272. // MessageText:
  273. //
  274. //  Invalid message ID.
  275. //
  276.   TAPI_E_INVALMESSAGEID            = HRESULT($80040019);
  277. //
  278. // MessageId: TAPI_E_INVALPARKID
  279. //
  280. // MessageText:
  281. //
  282. //  Invalid park ID.
  283. //
  284.   TAPI_E_INVALPARKID               = HRESULT($8004001A);
  285. //
  286. // MessageId: TAPI_E_INVALRATE
  287. //
  288. // MessageText:
  289. //
  290. //  Invalid rate.
  291. //
  292.   TAPI_E_INVALRATE                 = HRESULT($8004001B);
  293. //
  294. // MessageId: TAPI_E_INVALTIMEOUT
  295. //
  296. // MessageText:
  297. //
  298. //  Invalid timeout value.
  299. //
  300.   TAPI_E_INVALTIMEOUT              = HRESULT($8004001C);
  301. //
  302. // MessageId: TAPI_E_INVALTONE
  303. //
  304. // MessageText:
  305. //
  306. //  Invalid tone.
  307. //
  308.   TAPI_E_INVALTONE                 = HRESULT($8004001D);
  309. //
  310. // MessageId: TAPI_E_INVALLIST
  311. //
  312. // MessageText:
  313. //
  314. //  Invalid list passed as a parameter
  315. //
  316.   TAPI_E_INVALLIST                 = HRESULT($8004001E);
  317. //
  318. // MessageId: TAPI_E_INVALMODE
  319. //
  320. // MessageText:
  321. //
  322. //  Invalide mode passed as a parameter
  323. //
  324.   TAPI_E_INVALMODE                 = HRESULT($8004001F);
  325. //
  326. // MessageId: TAPI_E_NOCONFERENCE
  327. //
  328. // MessageText:
  329. //
  330. //  The call is not part of a conference.
  331. //
  332.   TAPI_E_NOCONFERENCE              = HRESULT($80040020);
  333. //
  334. // MessageId: TAPI_E_NODEVICE
  335. //
  336. // MessageText:
  337. //
  338. //  The device was removed, or the device class is not recognized.
  339. //
  340.   TAPI_E_NODEVICE                  = HRESULT($80040021);
  341. //
  342. // MessageId: TAPI_E_NOREQUEST
  343. //
  344. // MessageText:
  345. //
  346. //  No Assisted Telephony requests are pending.
  347. //
  348.   TAPI_E_NOREQUEST                 = HRESULT($80040022);
  349. //
  350. // MessageId: TAPI_E_NOTOWNER
  351. //
  352. // MessageText:
  353. //
  354. //  The application is does not have OWNER privilege on the call.
  355. //
  356.   TAPI_E_NOTOWNER                  = HRESULT($80040023);
  357. //
  358. // MessageId: TAPI_E_NOTREGISTERED
  359. //
  360. // MessageText:
  361. //
  362. //  The application is not registered to handle requests.
  363. //
  364.   TAPI_E_NOTREGISTERED             = HRESULT($80040024);
  365. //
  366. // MessageId: TAPI_E_REQUESTOVERRUN
  367. //
  368. // MessageText:
  369. //
  370. //  The request queue is already full.
  371. //
  372.   TAPI_E_REQUESTOVERRUN            = HRESULT($80040025);
  373. //
  374. // MessageId: TAPI_E_TARGETNOTFOUND
  375. //
  376. // MessageText:
  377. //
  378. //  The call handoff failed because the specified target was not found.
  379. //
  380.   TAPI_E_TARGETNOTFOUND            = HRESULT($80040026);
  381. //
  382. // MessageId: TAPI_E_TARGETSELF
  383. //
  384. // MessageText:
  385. //
  386. //  No higher priority target exists for the call handoff.
  387. //
  388.   TAPI_E_TARGETSELF                = HRESULT($80040027);
  389. //
  390. // MessageId: TAPI_E_USERUSERINFOTOOBIG
  391. //
  392. // MessageText:
  393. //
  394. //  The amount of user-user info exceeds the maximum permitted.
  395. //
  396.   TAPI_E_USERUSERINFOTOOBIG        = HRESULT($80040028);
  397. //
  398. // MessageId: TAPI_E_REINIT
  399. //
  400. // MessageText:
  401. //
  402. //  The operation cannot be completed until all TAPI applications shutdown and
  403. // reinitialize. 
  404. //
  405.   TAPI_E_REINIT                    = HRESULT($80040029);
  406. //
  407. // MessageId: TAPI_E_ADDRESSBLOCKED
  408. //
  409. // MessageText:
  410. //
  411. //  You are not permitted to call this number.
  412. //
  413.   TAPI_E_ADDRESSBLOCKED            = HRESULT($8004002A);
  414. //
  415. // MessageId: TAPI_E_BILLINGREJECTED
  416. //
  417. // MessageText:
  418. //
  419. //  The calling card number or other billing information was rejected.
  420. //
  421.   TAPI_E_BILLINGREJECTED           = HRESULT($8004002B);
  422. //
  423. // MessageId: TAPI_E_INVALFEATURE
  424. //
  425. // MessageText:
  426. //
  427. //  Invalid device-specific feature.
  428. //
  429.   TAPI_E_INVALFEATURE              = HRESULT($8004002C);
  430. //
  431. // MessageId: TAPI_E_INVALBUTTONLAMPID
  432. //
  433. // MessageText:
  434. //
  435. //  Invalid button or lamp ID.
  436. //
  437.   TAPI_E_INVALBUTTONLAMPID         = HRESULT($8004002D);
  438. //
  439. // MessageId: TAPI_E_INVALBUTTONSTATE
  440. //
  441. // MessageText:
  442. //
  443. //  Invalid button state.
  444. //
  445.   TAPI_E_INVALBUTTONSTATE          = HRESULT($8004002E);
  446. //
  447. // MessageId: TAPI_E_INVALDATAID
  448. //
  449. // MessageText:
  450. //
  451. //  Invalid data segment ID.
  452. //
  453.   TAPI_E_INVALDATAID               = HRESULT($8004002F);
  454. //
  455. // MessageId: TAPI_E_INVALHOOKSWITCHDEV
  456. //
  457. // MessageText:
  458. //
  459. //  Invalid hookswitch device ID.
  460. //
  461.   TAPI_E_INVALHOOKSWITCHDEV        = HRESULT($80040030);
  462. //
  463. // MessageId: TAPI_E_DROPPED
  464. //
  465. // MessageText:
  466. //
  467. //  The call was disconnected.
  468. //
  469.   TAPI_E_DROPPED                   = HRESULT($80040031);
  470. //
  471. // MessageId: TAPI_E_NOREQUESTRECIPIENT
  472. //
  473. // MessageText:
  474. //
  475. //  No program is available to handle the request.
  476. //
  477.   TAPI_E_NOREQUESTRECIPIENT        = HRESULT($80040032);
  478. //
  479. // MessageId: TAPI_E_REQUESTQUEUEFULL
  480. //
  481. // MessageText:
  482. //
  483. //  The queue of call requests is full.
  484. //
  485.   TAPI_E_REQUESTQUEUEFULL          = HRESULT($80040033);
  486. //
  487. // MessageId: TAPI_E_DESTBUSY
  488. //
  489. // MessageText:
  490. //
  491. //  The called number is busy.
  492. //
  493.   TAPI_E_DESTBUSY                  = HRESULT($80040034);
  494. //
  495. // MessageId: TAPI_E_DESTNOANSWER
  496. //
  497. // MessageText:
  498. //
  499. //  The called party does not answer.
  500. //
  501.   TAPI_E_DESTNOANSWER              = HRESULT($80040035);
  502. //
  503. // MessageId: TAPI_E_DESTUNAVAIL
  504. //
  505. // MessageText:
  506. //
  507. //  The called number could not be reached
  508. //
  509.   TAPI_E_DESTUNAVAIL               = HRESULT($80040036);
  510. //
  511. // MessageId: TAPI_E_REQUESTFAILED
  512. //
  513. // MessageText:
  514. //
  515. //  The request failed for unspecified reasons.
  516. //
  517.   TAPI_E_REQUESTFAILED             = HRESULT($80040037);
  518. //
  519. // MessageId: TAPI_E_REQUESTCANCELLED
  520. //
  521. // MessageText:
  522. //
  523. //  The request was cancelled.
  524. //
  525.   TAPI_E_REQUESTCANCELLED          = HRESULT($80040038);
  526. //
  527. // MessageId: TAPI_E_INVALPRIVILEGE
  528. //
  529. // MessageText:
  530. //
  531. //  Invalid privilege.
  532. //
  533.   TAPI_E_INVALPRIVILEGE            = HRESULT($80040039);
  534. //
  535. // MessageId: TAPI_E_INVALIDDIRECTION
  536. //
  537. // MessageText:
  538. //
  539. //  The TERMINAL_DIRECTION passed in was invalid.
  540. //
  541.   TAPI_E_INVALIDDIRECTION          = HRESULT($8004003A);
  542. //
  543. // MessageId: TAPI_E_INVALIDTERMINAL
  544. //
  545. // MessageText:
  546. //
  547. //  The Terminal passed in was invalid for this operation.
  548. //
  549.   TAPI_E_INVALIDTERMINAL           = HRESULT($8004003B);
  550. //
  551. // MessageId: TAPI_E_INVALIDTERMINALCLASS
  552. //
  553. // MessageText:
  554. //
  555. //  The Terminal Class is invalid.
  556. //
  557.   TAPI_E_INVALIDTERMINALCLASS      = HRESULT($8004003C);
  558. //
  559. // MessageId: TAPI_E_NODRIVER
  560. //
  561. // MessageText:
  562. //
  563. //  The service provider was removed.
  564. //
  565.   TAPI_E_NODRIVER                  = HRESULT($8004003D);
  566. //
  567. // MessageId: TAPI_E_MAXSTREAMS
  568. //
  569. // MessageText:
  570. //
  571. //  The maximum number of streams was reached.
  572. //
  573.   TAPI_E_MAXSTREAMS                = HRESULT($8004003E);
  574. //
  575. // MessageId: TAPI_E_NOTERMINALSELECTED
  576. //
  577. // MessageText:
  578. //
  579. //  The operation could not be performed because it requires terminals to be
  580. //  selected.
  581. //
  582.   TAPI_E_NOTERMINALSELECTED        = HRESULT($8004003F);
  583. //
  584. // MessageId: TAPI_E_TERMINALINUSE
  585. //
  586. // MessageText:
  587. //
  588. //  The operation could not be performed because the terminal is in use.
  589. //
  590.   TAPI_E_TERMINALINUSE             = HRESULT($80040040);
  591. //
  592. // MessageId: TAPI_E_NOTSTOPPED
  593. //
  594. // MessageText:
  595. //
  596. //  The operation could not be performed because it requires the stream to be
  597. //  stopped.
  598. //
  599.   TAPI_E_NOTSTOPPED                = HRESULT($80040041);
  600. //
  601. // MessageId: TAPI_E_MAXTERMINALS
  602. //
  603. // MessageText:
  604. //
  605. //  The maximum number of terminals has been reached.
  606. //
  607.   TAPI_E_MAXTERMINALS              = HRESULT($80040042);
  608. //
  609. // MessageId: TAPI_E_INVALIDSTREAM
  610. //
  611. // MessageText:
  612. //
  613. //  The Stream passed in was invalid for this operation.
  614. //
  615.   TAPI_E_INVALIDSTREAM             = HRESULT($80040043);
  616. //
  617. // MessageId: TAPI_E_TIMEOUT
  618. //
  619. // MessageText:
  620. //
  621. //  The call failed due to a timeout.
  622. //
  623.   TAPI_E_TIMEOUT                   = HRESULT($80040044);
  624. //--------------------------------------------------------------------------
  625. //     Call Center Error messages
  626. //--------------------------------------------------------------------------
  627. //
  628. // MessageId: TAPI_E_CALLCENTER_GROUP_REMOVED
  629. //
  630. // MessageText:
  631. //
  632. //  The ACD Proxy has removed this Group. Operations on this object are invalid.
  633. //
  634.   TAPI_E_CALLCENTER_GROUP_REMOVED  = HRESULT($80040045);
  635. //
  636. // MessageId: TAPI_E_CALLCENTER_QUEUE_REMOVED
  637. //
  638. // MessageText:
  639. //
  640. //  The ACD Proxy has removed this Queue. Operations on this object are invalid.
  641. //
  642.   TAPI_E_CALLCENTER_QUEUE_REMOVED  = HRESULT($80040046);
  643. //
  644. // MessageId: TAPI_E_CALLCENTER_NO_AGENT_ID
  645. //
  646. // MessageText:
  647. //
  648. //  The Agent object was created with CreateAgent. It does not have an ID, use
  649. //  CreateAgentWithID.
  650. //
  651.   TAPI_E_CALLCENTER_NO_AGENT_ID    = HRESULT($80040047);
  652. //
  653. // MessageId: TAPI_E_CALLCENTER_INVALAGENTID
  654. //
  655. // MessageText:
  656. //
  657. //  Invalid agent ID.
  658. //
  659.   TAPI_E_CALLCENTER_INVALAGENTID   = HRESULT($80040048);
  660. //
  661. // MessageId: TAPI_E_CALLCENTER_INVALAGENTGROUP
  662. //
  663. // MessageText:
  664. //
  665. //  Invalid agent group.
  666. //
  667.   TAPI_E_CALLCENTER_INVALAGENTGROUP = HRESULT($80040049);
  668. //
  669. // MessageId: TAPI_E_CALLCENTER_INVALPASSWORD
  670. //
  671. // MessageText:
  672. //
  673. //  Invalid agent password.
  674. //
  675.   TAPI_E_CALLCENTER_INVALPASSWORD  = HRESULT($8004004A);
  676. //
  677. // MessageId: TAPI_E_CALLCENTER_INVALAGENTSTATE
  678. //
  679. // MessageText:
  680. //
  681. //  Invalid agent state
  682. //
  683.   TAPI_E_CALLCENTER_INVALAGENTSTATE = HRESULT($8004004B);
  684. //
  685. // MessageId: TAPI_E_CALLCENTER_INVALAGENTACTIVITY
  686. //
  687. // MessageText:
  688. //
  689. //  Invalid agent activity.
  690. //
  691.   TAPI_E_CALLCENTER_INVALAGENTACTIVITY = HRESULT($8004004C);
  692. //
  693. // MessageId: TAPI_E_REGISTRY_SETTING_CORRUPT
  694. //
  695. // MessageText:
  696. //
  697. //  Registry Setting is Corrupt.
  698. //
  699.   TAPI_E_REGISTRY_SETTING_CORRUPT = HRESULT($8004004D);
  700. //--------------------------------------------------------------------------
  701. //     Terminal Specific Error messages
  702. //--------------------------------------------------------------------------
  703. //
  704. // MessageId: TAPI_E_TERMINAL_PEER
  705. //
  706. // MessageText:
  707. //
  708. //  The peer for one of these bridge terminals has already been assigned.
  709. //
  710.   TAPI_E_TERMINAL_PEER             = HRESULT($8004004E);
  711. //
  712. // MessageId: TAPI_E_PEER_NOT_SET
  713. //
  714. // MessageText:
  715. //
  716. //  The peer for this bridge terminal must be set to complete this operation.
  717. //
  718.   TAPI_E_PEER_NOT_SET              = HRESULT($8004004F);
  719. //--------------------------------------------------------------------------
  720. //     Media Service Provider Error messages
  721. //--------------------------------------------------------------------------
  722. //
  723. // MessageId: TAPI_E_NOEVENT
  724. //
  725. // MessageText:
  726. //
  727. //  There is no event in the MSP's event queue.
  728. //
  729.   TAPI_E_NOEVENT                   = HRESULT($80040050);
  730. //--------------------------------------------------------------------------
  731. //     Core TAPI Error messages
  732. //--------------------------------------------------------------------------
  733. //
  734. // MessageId: TAPI_E_INVALADDRESSTYPE
  735. //
  736. // MessageText:
  737. //
  738. //  The specified address type is not supported by this address.
  739. //
  740.   TAPI_E_INVALADDRESSTYPE = HRESULT($80040051);
  741. //
  742. // MessageId: TAPI_E_RESOURCEUNAVAIL
  743. //
  744. // MessageText:
  745. //
  746. //  A resource needed to fulfill the request is not available.
  747. //
  748.   TAPI_E_RESOURCEUNAVAIL = HRESULT($80040052);
  749. implementation
  750. end.