home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 May / PCFMay2001.iso / Xenon / C++ / FreeCommandLineTools.exe / Include / tapi3err.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-31  |  17.0 KB  |  819 lines

  1. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  2. /*****************************************************************************
  3. *
  4. * Copyright (c) 1998 - 1999  Microsoft Corporation
  5. *
  6. * Module Name:
  7. *
  8. *    tapi3err.h
  9. *
  10. * Abstract:
  11. *
  12. *    Error Notifications for TAPI 3.0
  13. *
  14. *****************************************************************************/
  15.  
  16. #if _MSC_VER >= 1000
  17. #pragma once
  18. #endif // _MSC_VER >= 1000
  19.  
  20. #ifndef __TAPI3ERR_H__
  21. #define __TAPI3ERR_H__
  22.  
  23. //--------------------------------------------------------------------------
  24. //     Core TAPI Error messages
  25. //--------------------------------------------------------------------------
  26.  
  27. //
  28. //  Values are 32 bit values layed out as follows:
  29. //
  30. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  31. //   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
  32. //  +---+-+-+-----------------------+-------------------------------+
  33. //  |Sev|C|R|     Facility          |               Code            |
  34. //  +---+-+-+-----------------------+-------------------------------+
  35. //
  36. //  where
  37. //
  38. //      Sev - is the severity code
  39. //
  40. //          00 - Success
  41. //          01 - Informational
  42. //          10 - Warning
  43. //          11 - Error
  44. //
  45. //      C - is the Customer code flag
  46. //
  47. //      R - is a reserved bit
  48. //
  49. //      Facility - is the facility code
  50. //
  51. //      Code - is the facility's status code
  52. //
  53. //
  54. // Define the facility codes
  55. //
  56.  
  57.  
  58. //
  59. // Define the severity codes
  60. //
  61.  
  62.  
  63. //
  64. // MessageId: TAPI_E_NOTENOUGHMEMORY
  65. //
  66. // MessageText:
  67. //
  68. //  The buffer passed in to this method was not big enough.
  69. //
  70. #define TAPI_E_NOTENOUGHMEMORY           ((HRESULT)0x80040001L)
  71.  
  72. //
  73. // MessageId: TAPI_E_NOITEMS
  74. //
  75. // MessageText:
  76. //
  77. //  No items exist that match the request.
  78. //
  79. #define TAPI_E_NOITEMS                   ((HRESULT)0x80040002L)
  80.  
  81. //
  82. // MessageId: TAPI_E_NOTSUPPORTED
  83. //
  84. // MessageText:
  85. //
  86. //  This method is not supported.
  87. //
  88. #define TAPI_E_NOTSUPPORTED              ((HRESULT)0x80040003L)
  89.  
  90. //
  91. // MessageId: TAPI_E_INVALIDMEDIATYPE
  92. //
  93. // MessageText:
  94. //
  95. //  The MEDIATYPE passed in to this method was invalid.
  96. //
  97. #define TAPI_E_INVALIDMEDIATYPE          ((HRESULT)0x80040004L)
  98.  
  99. //
  100. // MessageId: TAPI_E_OPERATIONFAILED
  101. //
  102. // MessageText:
  103. //
  104. //  The operation failed for an unspecified reason.
  105. //
  106. #define TAPI_E_OPERATIONFAILED           ((HRESULT)0x80040005L)
  107.  
  108. //
  109. // MessageId: TAPI_E_ALLOCATED
  110. //
  111. // MessageText:
  112. //
  113. //  The device is already in use.
  114. //
  115. #define TAPI_E_ALLOCATED                 ((HRESULT)0x80040006L)
  116.  
  117. //
  118. // MessageId: TAPI_E_CALLUNAVAIL
  119. //
  120. // MessageText:
  121. //
  122. //  No call appearance available.
  123. //
  124. #define TAPI_E_CALLUNAVAIL               ((HRESULT)0x80040007L)
  125.  
  126. //
  127. // MessageId: TAPI_E_COMPLETIONOVERRUN
  128. //
  129. // MessageText:
  130. //
  131. //  Too many call completions outstanding.
  132. //
  133. #define TAPI_E_COMPLETIONOVERRUN         ((HRESULT)0x80040008L)
  134.  
  135. //
  136. // MessageId: TAPI_E_CONFERENCEFULL
  137. //
  138. // MessageText:
  139. //
  140. //  The conference is full.
  141. //
  142. #define TAPI_E_CONFERENCEFULL            ((HRESULT)0x80040009L)
  143.  
  144. //
  145. // MessageId: TAPI_E_DIALMODIFIERNOTSUPPORTED
  146. //
  147. // MessageText:
  148. //
  149. //  The dial modifier is not supported.
  150. //
  151. #define TAPI_E_DIALMODIFIERNOTSUPPORTED  ((HRESULT)0x8004000AL)
  152.  
  153. //
  154. // MessageId: TAPI_E_INUSE
  155. //
  156. // MessageText:
  157. //
  158. //  The device is already in use.
  159. //
  160. #define TAPI_E_INUSE                     ((HRESULT)0x8004000BL)
  161.  
  162. //
  163. // MessageId: TAPI_E_INVALADDRESS
  164. //
  165. // MessageText:
  166. //
  167. //  The phone number is invalid or not properly formatted.
  168. //
  169. #define TAPI_E_INVALADDRESS              ((HRESULT)0x8004000CL)
  170.  
  171. //
  172. // MessageId: TAPI_E_INVALADDRESSSTATE
  173. //
  174. // MessageText:
  175. //
  176. //  Operation not permitted in current address state.
  177. //
  178. #define TAPI_E_INVALADDRESSSTATE         ((HRESULT)0x8004000DL)
  179.  
  180. //
  181. // MessageId: TAPI_E_INVALCALLPARAMS
  182. //
  183. // MessageText:
  184. //
  185. //  Invalid LINECALLPARAMS structure.
  186. //
  187. #define TAPI_E_INVALCALLPARAMS           ((HRESULT)0x8004000EL)
  188.  
  189. //
  190. // MessageId: TAPI_E_INVALCALLPRIVILEGE
  191. //
  192. // MessageText:
  193. //
  194. //  Invalid call privilege.
  195. //
  196. #define TAPI_E_INVALCALLPRIVILEGE        ((HRESULT)0x8004000FL)
  197.  
  198. //
  199. // MessageId: TAPI_E_INVALCALLSTATE
  200. //
  201. // MessageText:
  202. //
  203. //  Operation not permitted in current call state.
  204. //
  205. #define TAPI_E_INVALCALLSTATE            ((HRESULT)0x80040010L)
  206.  
  207. //
  208. // MessageId: TAPI_E_INVALCARD
  209. //
  210. // MessageText:
  211. //
  212. //  Invalid calling card.
  213. //
  214. #define TAPI_E_INVALCARD                 ((HRESULT)0x80040011L)
  215.  
  216. //
  217. // MessageId: TAPI_E_INVALCOMPLETIONID
  218. //
  219. // MessageText:
  220. //
  221. //  Invalid call completion ID.
  222. //
  223. #define TAPI_E_INVALCOMPLETIONID         ((HRESULT)0x80040012L)
  224.  
  225. //
  226. // MessageId: TAPI_E_INVALCOUNTRYCODE
  227. //
  228. // MessageText:
  229. //
  230. //  Invalid country code.
  231. //
  232. #define TAPI_E_INVALCOUNTRYCODE          ((HRESULT)0x80040013L)
  233.  
  234. //
  235. // MessageId: TAPI_E_INVALDEVICECLASS
  236. //
  237. // MessageText:
  238. //
  239. //  Invalid device class identifier
  240. //
  241. #define TAPI_E_INVALDEVICECLASS          ((HRESULT)0x80040014L)
  242.  
  243. //
  244. // MessageId: TAPI_E_INVALDIALPARAMS
  245. //
  246. // MessageText:
  247. //
  248. //  Invalid dialing parameters
  249. //
  250. #define TAPI_E_INVALDIALPARAMS           ((HRESULT)0x80040015L)
  251.  
  252. //
  253. // MessageId: TAPI_E_INVALDIGITS
  254. //
  255. // MessageText:
  256. //
  257. //  Invalid digits.
  258. //
  259. #define TAPI_E_INVALDIGITS               ((HRESULT)0x80040016L)
  260.  
  261. //
  262. // MessageId: TAPI_E_INVALGROUPID
  263. //
  264. // MessageText:
  265. //
  266. //  Invalid group pickup ID.
  267. //
  268. #define TAPI_E_INVALGROUPID              ((HRESULT)0x80040017L)
  269.  
  270. //
  271. // MessageId: TAPI_E_INVALLOCATION
  272. //
  273. // MessageText:
  274. //
  275. //  Invalid location ID.
  276. //
  277. #define TAPI_E_INVALLOCATION             ((HRESULT)0x80040018L)
  278.  
  279. //
  280. // MessageId: TAPI_E_INVALMESSAGEID
  281. //
  282. // MessageText:
  283. //
  284. //  Invalid message ID.
  285. //
  286. #define TAPI_E_INVALMESSAGEID            ((HRESULT)0x80040019L)
  287.  
  288. //
  289. // MessageId: TAPI_E_INVALPARKID
  290. //
  291. // MessageText:
  292. //
  293. //  Invalid park ID.
  294. //
  295. #define TAPI_E_INVALPARKID               ((HRESULT)0x8004001AL)
  296.  
  297. //
  298. // MessageId: TAPI_E_INVALRATE
  299. //
  300. // MessageText:
  301. //
  302. //  Invalid rate.
  303. //
  304. #define TAPI_E_INVALRATE                 ((HRESULT)0x8004001BL)
  305.  
  306. //
  307. // MessageId: TAPI_E_INVALTIMEOUT
  308. //
  309. // MessageText:
  310. //
  311. //  Invalid timeout value.
  312. //
  313. #define TAPI_E_INVALTIMEOUT              ((HRESULT)0x8004001CL)
  314.  
  315. //
  316. // MessageId: TAPI_E_INVALTONE
  317. //
  318. // MessageText:
  319. //
  320. //  Invalid tone.
  321. //
  322. #define TAPI_E_INVALTONE                 ((HRESULT)0x8004001DL)
  323.  
  324. //
  325. // MessageId: TAPI_E_INVALLIST
  326. //
  327. // MessageText:
  328. //
  329. //  Invalid list passed as a parameter
  330. //
  331. #define TAPI_E_INVALLIST                 ((HRESULT)0x8004001EL)
  332.  
  333. //
  334. // MessageId: TAPI_E_INVALMODE
  335. //
  336. // MessageText:
  337. //
  338. //  Invalide mode passed as a parameter
  339. //
  340. #define TAPI_E_INVALMODE                 ((HRESULT)0x8004001FL)
  341.  
  342. //
  343. // MessageId: TAPI_E_NOCONFERENCE
  344. //
  345. // MessageText:
  346. //
  347. //  The call is not part of a conference.
  348. //
  349. #define TAPI_E_NOCONFERENCE              ((HRESULT)0x80040020L)
  350.  
  351. //
  352. // MessageId: TAPI_E_NODEVICE
  353. //
  354. // MessageText:
  355. //
  356. //  The device was removed, or the device class is not recognized.
  357. //
  358. #define TAPI_E_NODEVICE                  ((HRESULT)0x80040021L)
  359.  
  360. //
  361. // MessageId: TAPI_E_NOREQUEST
  362. //
  363. // MessageText:
  364. //
  365. //  No Assisted Telephony requests are pending.
  366. //
  367. #define TAPI_E_NOREQUEST                 ((HRESULT)0x80040022L)
  368.  
  369. //
  370. // MessageId: TAPI_E_NOTOWNER
  371. //
  372. // MessageText:
  373. //
  374. //  The application is does not have OWNER privilege on the call.
  375. //
  376. #define TAPI_E_NOTOWNER                  ((HRESULT)0x80040023L)
  377.  
  378. //
  379. // MessageId: TAPI_E_NOTREGISTERED
  380. //
  381. // MessageText:
  382. //
  383. //  The application is not registered to handle requests.
  384. //
  385. #define TAPI_E_NOTREGISTERED             ((HRESULT)0x80040024L)
  386.  
  387. //
  388. // MessageId: TAPI_E_REQUESTOVERRUN
  389. //
  390. // MessageText:
  391. //
  392. //  The request queue is already full.
  393. //
  394. #define TAPI_E_REQUESTOVERRUN            ((HRESULT)0x80040025L)
  395.  
  396. //
  397. // MessageId: TAPI_E_TARGETNOTFOUND
  398. //
  399. // MessageText:
  400. //
  401. //  The call handoff failed because the specified target was not found.
  402. //
  403. #define TAPI_E_TARGETNOTFOUND            ((HRESULT)0x80040026L)
  404.  
  405. //
  406. // MessageId: TAPI_E_TARGETSELF
  407. //
  408. // MessageText:
  409. //
  410. //  No higher priority target exists for the call handoff.
  411. //
  412. #define TAPI_E_TARGETSELF                ((HRESULT)0x80040027L)
  413.  
  414. //
  415. // MessageId: TAPI_E_USERUSERINFOTOOBIG
  416. //
  417. // MessageText:
  418. //
  419. //  The amount of user-user info exceeds the maximum permitted.
  420. //
  421. #define TAPI_E_USERUSERINFOTOOBIG        ((HRESULT)0x80040028L)
  422.  
  423. //
  424. // MessageId: TAPI_E_REINIT
  425. //
  426. // MessageText:
  427. //
  428. //  The operation cannot be completed until all TAPI applications shutdown and reinitialize. 
  429. //
  430. #define TAPI_E_REINIT                    ((HRESULT)0x80040029L)
  431.  
  432. //
  433. // MessageId: TAPI_E_ADDRESSBLOCKED
  434. //
  435. // MessageText:
  436. //
  437. //  You are not permitted to call this number.
  438. //
  439. #define TAPI_E_ADDRESSBLOCKED            ((HRESULT)0x8004002AL)
  440.  
  441. //
  442. // MessageId: TAPI_E_BILLINGREJECTED
  443. //
  444. // MessageText:
  445. //
  446. //  The calling card number or other billing information was rejected.
  447. //
  448. #define TAPI_E_BILLINGREJECTED           ((HRESULT)0x8004002BL)
  449.  
  450. //
  451. // MessageId: TAPI_E_INVALFEATURE
  452. //
  453. // MessageText:
  454. //
  455. //  Invalid device-specific feature.
  456. //
  457. #define TAPI_E_INVALFEATURE              ((HRESULT)0x8004002CL)
  458.  
  459. //
  460. // MessageId: TAPI_E_INVALBUTTONLAMPID
  461. //
  462. // MessageText:
  463. //
  464. //  Invalid button or lamp ID.
  465. //
  466. #define TAPI_E_INVALBUTTONLAMPID         ((HRESULT)0x8004002DL)
  467.  
  468. //
  469. // MessageId: TAPI_E_INVALBUTTONSTATE
  470. //
  471. // MessageText:
  472. //
  473. //  Invalid button state.
  474. //
  475. #define TAPI_E_INVALBUTTONSTATE          ((HRESULT)0x8004002EL)
  476.  
  477. //
  478. // MessageId: TAPI_E_INVALDATAID
  479. //
  480. // MessageText:
  481. //
  482. //  Invalid data segment ID.
  483. //
  484. #define TAPI_E_INVALDATAID               ((HRESULT)0x8004002FL)
  485.  
  486. //
  487. // MessageId: TAPI_E_INVALHOOKSWITCHDEV
  488. //
  489. // MessageText:
  490. //
  491. //  Invalid hookswitch device ID.
  492. //
  493. #define TAPI_E_INVALHOOKSWITCHDEV        ((HRESULT)0x80040030L)
  494.  
  495. //
  496. // MessageId: TAPI_E_DROPPED
  497. //
  498. // MessageText:
  499. //
  500. //  The call was disconnected.
  501. //
  502. #define TAPI_E_DROPPED                   ((HRESULT)0x80040031L)
  503.  
  504. //
  505. // MessageId: TAPI_E_NOREQUESTRECIPIENT
  506. //
  507. // MessageText:
  508. //
  509. //  No program is available to handle the request.
  510. //
  511. #define TAPI_E_NOREQUESTRECIPIENT        ((HRESULT)0x80040032L)
  512.  
  513. //
  514. // MessageId: TAPI_E_REQUESTQUEUEFULL
  515. //
  516. // MessageText:
  517. //
  518. //  The queue of call requests is full.
  519. //
  520. #define TAPI_E_REQUESTQUEUEFULL          ((HRESULT)0x80040033L)
  521.  
  522. //
  523. // MessageId: TAPI_E_DESTBUSY
  524. //
  525. // MessageText:
  526. //
  527. //  The called number is busy.
  528. //
  529. #define TAPI_E_DESTBUSY                  ((HRESULT)0x80040034L)
  530.  
  531. //
  532. // MessageId: TAPI_E_DESTNOANSWER
  533. //
  534. // MessageText:
  535. //
  536. //  The called party does not answer.
  537. //
  538. #define TAPI_E_DESTNOANSWER              ((HRESULT)0x80040035L)
  539.  
  540. //
  541. // MessageId: TAPI_E_DESTUNAVAIL
  542. //
  543. // MessageText:
  544. //
  545. //  The called number could not be reached
  546. //
  547. #define TAPI_E_DESTUNAVAIL               ((HRESULT)0x80040036L)
  548.  
  549. //
  550. // MessageId: TAPI_E_REQUESTFAILED
  551. //
  552. // MessageText:
  553. //
  554. //  The request failed for unspecified reasons.
  555. //
  556. #define TAPI_E_REQUESTFAILED             ((HRESULT)0x80040037L)
  557.  
  558. //
  559. // MessageId: TAPI_E_REQUESTCANCELLED
  560. //
  561. // MessageText:
  562. //
  563. //  The request was cancelled.
  564. //
  565. #define TAPI_E_REQUESTCANCELLED          ((HRESULT)0x80040038L)
  566.  
  567. //
  568. // MessageId: TAPI_E_INVALPRIVILEGE
  569. //
  570. // MessageText:
  571. //
  572. //  Invalid privilege.
  573. //
  574. #define TAPI_E_INVALPRIVILEGE            ((HRESULT)0x80040039L)
  575.  
  576. //
  577. // MessageId: TAPI_E_INVALIDDIRECTION
  578. //
  579. // MessageText:
  580. //
  581. //  The TERMINAL_DIRECTION passed in was invalid.
  582. //
  583. #define TAPI_E_INVALIDDIRECTION          ((HRESULT)0x8004003AL)
  584.  
  585. //
  586. // MessageId: TAPI_E_INVALIDTERMINAL
  587. //
  588. // MessageText:
  589. //
  590. //  The Terminal passed in was invalid for this operation.
  591. //
  592. #define TAPI_E_INVALIDTERMINAL           ((HRESULT)0x8004003BL)
  593.  
  594. //
  595. // MessageId: TAPI_E_INVALIDTERMINALCLASS
  596. //
  597. // MessageText:
  598. //
  599. //  The Terminal Class is invalid.
  600. //
  601. #define TAPI_E_INVALIDTERMINALCLASS      ((HRESULT)0x8004003CL)
  602.  
  603. //
  604. // MessageId: TAPI_E_NODRIVER
  605. //
  606. // MessageText:
  607. //
  608. //  The service provider was removed.
  609. //
  610. #define TAPI_E_NODRIVER                  ((HRESULT)0x8004003DL)
  611.  
  612. //
  613. // MessageId: TAPI_E_MAXSTREAMS
  614. //
  615. // MessageText:
  616. //
  617. //  The maximum number of streams was reached.
  618. //
  619. #define TAPI_E_MAXSTREAMS                ((HRESULT)0x8004003EL)
  620.  
  621. //
  622. // MessageId: TAPI_E_NOTERMINALSELECTED
  623. //
  624. // MessageText:
  625. //
  626. //  The operation could not be performed because it requires terminals to be selected.
  627. //
  628. #define TAPI_E_NOTERMINALSELECTED        ((HRESULT)0x8004003FL)
  629.  
  630. //
  631. // MessageId: TAPI_E_TERMINALINUSE
  632. //
  633. // MessageText:
  634. //
  635. //  The operation could not be performed because the terminal is in use.
  636. //
  637. #define TAPI_E_TERMINALINUSE             ((HRESULT)0x80040040L)
  638.  
  639. //
  640. // MessageId: TAPI_E_NOTSTOPPED
  641. //
  642. // MessageText:
  643. //
  644. //  The operation could not be performed because it requires the stream to be stopped.
  645. //
  646. #define TAPI_E_NOTSTOPPED                ((HRESULT)0x80040041L)
  647.  
  648. //
  649. // MessageId: TAPI_E_MAXTERMINALS
  650. //
  651. // MessageText:
  652. //
  653. //  The maximum number of terminals has been reached.
  654. //
  655. #define TAPI_E_MAXTERMINALS              ((HRESULT)0x80040042L)
  656.  
  657. //
  658. // MessageId: TAPI_E_INVALIDSTREAM
  659. //
  660. // MessageText:
  661. //
  662. //  The Stream passed in was invalid for this operation.
  663. //
  664. #define TAPI_E_INVALIDSTREAM             ((HRESULT)0x80040043L)
  665.  
  666. //
  667. // MessageId: TAPI_E_TIMEOUT
  668. //
  669. // MessageText:
  670. //
  671. //  The call failed due to a timeout.
  672. //
  673. #define TAPI_E_TIMEOUT                   ((HRESULT)0x80040044L)
  674.  
  675. //--------------------------------------------------------------------------
  676. //     Call Center Error messages
  677. //--------------------------------------------------------------------------
  678.  
  679. //
  680. // MessageId: TAPI_E_CALLCENTER_GROUP_REMOVED
  681. //
  682. // MessageText:
  683. //
  684. //  The ACD Proxy has removed this Group. Operations on this object are invalid.
  685. //
  686. #define TAPI_E_CALLCENTER_GROUP_REMOVED  ((HRESULT)0x80040045L)
  687.  
  688. //
  689. // MessageId: TAPI_E_CALLCENTER_QUEUE_REMOVED
  690. //
  691. // MessageText:
  692. //
  693. //  The ACD Proxy has removed this Queue. Operations on this object are invalid.
  694. //
  695. #define TAPI_E_CALLCENTER_QUEUE_REMOVED  ((HRESULT)0x80040046L)
  696.  
  697. //
  698. // MessageId: TAPI_E_CALLCENTER_NO_AGENT_ID
  699. //
  700. // MessageText:
  701. //
  702. //  The Agent object was created with CreateAgent. It does not have an ID, use CreateAgentWithID.
  703. //
  704. #define TAPI_E_CALLCENTER_NO_AGENT_ID    ((HRESULT)0x80040047L)
  705.  
  706. //
  707. // MessageId: TAPI_E_CALLCENTER_INVALAGENTID
  708. //
  709. // MessageText:
  710. //
  711. //  Invalid agent ID.
  712. //
  713. #define TAPI_E_CALLCENTER_INVALAGENTID   ((HRESULT)0x80040048L)
  714.  
  715. //
  716. // MessageId: TAPI_E_CALLCENTER_INVALAGENTGROUP
  717. //
  718. // MessageText:
  719. //
  720. //  Invalid agent group.
  721. //
  722. #define TAPI_E_CALLCENTER_INVALAGENTGROUP ((HRESULT)0x80040049L)
  723.  
  724. //
  725. // MessageId: TAPI_E_CALLCENTER_INVALPASSWORD
  726. //
  727. // MessageText:
  728. //
  729. //  Invalid agent password.
  730. //
  731. #define TAPI_E_CALLCENTER_INVALPASSWORD  ((HRESULT)0x8004004AL)
  732.  
  733. //
  734. // MessageId: TAPI_E_CALLCENTER_INVALAGENTSTATE
  735. //
  736. // MessageText:
  737. //
  738. //  Invalid agent state
  739. //
  740. #define TAPI_E_CALLCENTER_INVALAGENTSTATE ((HRESULT)0x8004004BL)
  741.  
  742. //
  743. // MessageId: TAPI_E_CALLCENTER_INVALAGENTACTIVITY
  744. //
  745. // MessageText:
  746. //
  747. //  Invalid agent activity.
  748. //
  749. #define TAPI_E_CALLCENTER_INVALAGENTACTIVITY ((HRESULT)0x8004004CL)
  750.  
  751. //
  752. // MessageId: TAPI_E_REGISTRY_SETTING_CORRUPT
  753. //
  754. // MessageText:
  755. //
  756. //  Registry Setting is Corrupt.
  757. //
  758. #define TAPI_E_REGISTRY_SETTING_CORRUPT  ((HRESULT)0x8004004DL)
  759.  
  760. //--------------------------------------------------------------------------
  761. //     Terminal Specific Error messages
  762. //--------------------------------------------------------------------------
  763.  
  764. //
  765. // MessageId: TAPI_E_TERMINAL_PEER
  766. //
  767. // MessageText:
  768. //
  769. //  The peer for one of these bridge terminals has already been assigned.
  770. //
  771. #define TAPI_E_TERMINAL_PEER             ((HRESULT)0x8004004EL)
  772.  
  773. //
  774. // MessageId: TAPI_E_PEER_NOT_SET
  775. //
  776. // MessageText:
  777. //
  778. //  The peer for this bridge terminal must be set to complete this operation.
  779. //
  780. #define TAPI_E_PEER_NOT_SET              ((HRESULT)0x8004004FL)
  781.  
  782.  
  783. //--------------------------------------------------------------------------
  784. //     Media Service Provider Error messages
  785. //--------------------------------------------------------------------------
  786. //
  787. // MessageId: TAPI_E_NOEVENT
  788. //
  789. // MessageText:
  790. //
  791. //  There is no event in the MSP's event queue.
  792. //
  793. #define TAPI_E_NOEVENT                   ((HRESULT)0x80040050L)
  794.  
  795. //--------------------------------------------------------------------------
  796. //     Core TAPI Error messages
  797. //--------------------------------------------------------------------------
  798.  
  799. //
  800. // MessageId: TAPI_E_INVALADDRESSTYPE
  801. //
  802. // MessageText:
  803. //
  804. //  The specified address type is not supported by this address.
  805. //
  806. #define TAPI_E_INVALADDRESSTYPE          ((HRESULT)0x80040051L)
  807.  
  808. //
  809. // MessageId: TAPI_E_RESOURCEUNAVAIL
  810. //
  811. // MessageText:
  812. //
  813. //  A resource needed to fulfill the request is not available.
  814. //
  815. #define TAPI_E_RESOURCEUNAVAIL           ((HRESULT)0x80040052L)
  816.  
  817. #endif // #ifndef __TAPI3ERR_H__
  818. #pragma option pop /*P_O_Pop*/
  819.