home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2000 May / MICD_2000_05.iso / CBuilder5 / INSTALL / DATA1.CAB / Program_Built_Files / Include / raserror.h < prev    next >
C/C++ Source or Header  |  2000-02-01  |  29KB  |  1,038 lines

  1. /* Copyright (c) 1992-1999, Microsoft Corporation, all rights reserved
  2. **
  3. ** raserror.h
  4. ** Remote Access external API
  5. ** RAS specific error codes
  6. */
  7.  
  8. #ifndef _RASERROR_H_
  9. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  10. #define _RASERROR_H_
  11.  
  12. #if _MSC_VER > 1000
  13. #pragma once
  14. #endif
  15.  
  16. #define RASBASE 600
  17. #define SUCCESS 0
  18.  
  19.  
  20. #define PENDING                              (RASBASE+0)
  21. /*
  22.  * An operation is pending.%0
  23.  */
  24.  
  25. #define ERROR_INVALID_PORT_HANDLE            (RASBASE+1)
  26. /*
  27.  * An invalid port handle was detected.%0
  28.  */
  29.  
  30. #define ERROR_PORT_ALREADY_OPEN              (RASBASE+2)
  31. /*
  32.  * The specified port is already open.%0
  33.  */
  34.  
  35. #define ERROR_BUFFER_TOO_SMALL               (RASBASE+3)
  36. /*
  37.  * The caller's buffer is too small.%0
  38.  */
  39.  
  40. #define ERROR_WRONG_INFO_SPECIFIED           (RASBASE+4)
  41. /*
  42.  * Incorrect information was specified.%0
  43.  */
  44.  
  45. #define ERROR_CANNOT_SET_PORT_INFO           (RASBASE+5)
  46. /*
  47.  * The port information cannot be set.%0
  48.  */
  49.  
  50. #define ERROR_PORT_NOT_CONNECTED             (RASBASE+6)
  51. /*
  52.  * The specified port is not connected.%0
  53.  */
  54.  
  55. #define ERROR_EVENT_INVALID                  (RASBASE+7)
  56. /*
  57.  * An invalid event was detected.%0
  58.  */
  59.  
  60. #define ERROR_DEVICE_DOES_NOT_EXIST          (RASBASE+8)
  61. /*
  62.  * A device was specified that does not exist.%0
  63.  */
  64.  
  65. #define ERROR_DEVICETYPE_DOES_NOT_EXIST      (RASBASE+9)
  66. /*
  67.  * A device type was specified that does not exist.%0
  68.  */
  69.  
  70. #define ERROR_BUFFER_INVALID                 (RASBASE+10)
  71. /*
  72.  * An invalid buffer was specified.%0
  73.  */
  74.  
  75. #define ERROR_ROUTE_NOT_AVAILABLE            (RASBASE+11)
  76. /*
  77.  * A route was specified that is not available.%0
  78.  */
  79.  
  80. #define ERROR_ROUTE_NOT_ALLOCATED            (RASBASE+12)
  81. /*
  82.  * A route was specified that is not allocated.%0
  83.  */
  84.  
  85. #define ERROR_INVALID_COMPRESSION_SPECIFIED  (RASBASE+13)
  86. /*
  87.  * An invalid compression was specified.%0
  88.  */
  89.  
  90. #define ERROR_OUT_OF_BUFFERS                 (RASBASE+14)
  91. /*
  92.  * There were insufficient buffers available.%0
  93.  */
  94.  
  95. #define ERROR_PORT_NOT_FOUND                 (RASBASE+15)
  96. /*
  97.  * The specified port was not found.%0
  98.  */ 
  99.  
  100. #define ERROR_ASYNC_REQUEST_PENDING          (RASBASE+16)
  101. /*
  102.  * An asynchronous request is pending.%0
  103.  */
  104.  
  105. #define ERROR_ALREADY_DISCONNECTING          (RASBASE+17)
  106. /*
  107.  * The modem (or other connecting device) is already disconnecting.%0
  108.  */
  109.  
  110. #define ERROR_PORT_NOT_OPEN                  (RASBASE+18)
  111. /*
  112.  * The specified port is not open.%0
  113.  */ 
  114.  
  115. #define ERROR_PORT_DISCONNECTED              (RASBASE+19)
  116. /*
  117.  * The specified port is not connected.%0
  118.  */
  119.  
  120. #define ERROR_NO_ENDPOINTS                   (RASBASE+20)
  121. /*
  122.  * No endpoints could be determined.%0
  123.  */
  124.  
  125. #define ERROR_CANNOT_OPEN_PHONEBOOK          (RASBASE+21)
  126. /*
  127.  * The system could not open the phone book file.%0
  128.  */ 
  129.  
  130. #define ERROR_CANNOT_LOAD_PHONEBOOK          (RASBASE+22)
  131. /*
  132.  * The system could not load the phone book file.%0
  133.  */
  134.  
  135. #define ERROR_CANNOT_FIND_PHONEBOOK_ENTRY    (RASBASE+23)
  136. /*
  137.  * The system could not find the phone book entry for this connection.%0
  138.  */
  139.  
  140. #define ERROR_CANNOT_WRITE_PHONEBOOK         (RASBASE+24)
  141. /*
  142.  * The system could not update the phone book file.%0
  143.  */
  144.  
  145. #define ERROR_CORRUPT_PHONEBOOK              (RASBASE+25)
  146. /*
  147.  * The system found invalid information in the phone book file.%0
  148.  */
  149.  
  150. #define ERROR_CANNOT_LOAD_STRING             (RASBASE+26)
  151. /*
  152.  * A string could not be loaded.%0
  153.  */
  154.  
  155. #define ERROR_KEY_NOT_FOUND                  (RASBASE+27)
  156. /*
  157.  * A key could not be found.%0
  158.  */
  159.  
  160. #define ERROR_DISCONNECTION                  (RASBASE+28)
  161. /*
  162.  * The connection was closed.%0
  163.  */ 
  164.  
  165. #define ERROR_REMOTE_DISCONNECTION           (RASBASE+29)
  166. /*
  167.  * The connection was closed by the remote computer.%0
  168.  */
  169.  
  170. #define ERROR_HARDWARE_FAILURE               (RASBASE+30)
  171. /*
  172.  * The modem (or other connecting device) was disconnected due to hardware failure.%0
  173.  */
  174.  
  175. #define ERROR_USER_DISCONNECTION             (RASBASE+31)
  176. /*
  177.  * The user disconnected the modem (or other connecting device).%0
  178.  */
  179.  
  180. #define ERROR_INVALID_SIZE                   (RASBASE+32)
  181. /*
  182.  * An incorrect structure size was detected.%0
  183.  */
  184.  
  185. #define ERROR_PORT_NOT_AVAILABLE             (RASBASE+33)
  186. /*
  187.  * The modem (or other connecting device) is already in use or is not configured properly.%0 
  188.  */
  189.  
  190. #define ERROR_CANNOT_PROJECT_CLIENT          (RASBASE+34)
  191. /*
  192.  * Your computer could not be registered on the remote network.%0
  193.  */ 
  194.  
  195. #define ERROR_UNKNOWN                        (RASBASE+35)
  196. /*
  197.  * There was an unknown error.%0
  198.  */
  199.  
  200. #define ERROR_WRONG_DEVICE_ATTACHED          (RASBASE+36)
  201. /*
  202.  * The device attached to the port is not the one expected.%0
  203.  */
  204.  
  205. #define ERROR_BAD_STRING                     (RASBASE+37)
  206. /*
  207.  * A string was detected that could not be converted.%0
  208.  */
  209.  
  210. #define ERROR_REQUEST_TIMEOUT                (RASBASE+38)
  211. /*
  212.  * The request has timed out.%0
  213.  */
  214.  
  215. #define ERROR_CANNOT_GET_LANA                (RASBASE+39)
  216. /*
  217.  * No asynchronous net is available.%0
  218.  */
  219.  
  220. #define ERROR_NETBIOS_ERROR                  (RASBASE+40)
  221. /*
  222.  * An error has occurred involving NetBIOS.%0
  223.  */
  224.  
  225. #define ERROR_SERVER_OUT_OF_RESOURCES        (RASBASE+41)
  226. /*
  227.  * The server cannot allocate NetBIOS resources needed to support the client.%0
  228.  */
  229.  
  230. #define ERROR_NAME_EXISTS_ON_NET             (RASBASE+42)
  231. /*
  232.  * One of your computer's NetBIOS names is already registered on the remote network.%0
  233.  */
  234.  
  235. #define ERROR_SERVER_GENERAL_NET_FAILURE     (RASBASE+43)
  236. /*
  237.  * A network adapter at the server failed.%0
  238.  */
  239.  
  240. #define WARNING_MSG_ALIAS_NOT_ADDED          (RASBASE+44)
  241. /*
  242.  * You will not receive network message popups.%0
  243.  */
  244.  
  245. #define ERROR_AUTH_INTERNAL                  (RASBASE+45)
  246. /*
  247.  * There was an internal authentication error.%0
  248.  */
  249.  
  250. #define ERROR_RESTRICTED_LOGON_HOURS         (RASBASE+46)
  251. /*
  252.  * The account is not permitted to log on at this time of day.%0
  253.  */
  254.  
  255. #define ERROR_ACCT_DISABLED                  (RASBASE+47)
  256. /*
  257.  * The account is disabled.%0
  258.  */
  259.  
  260. #define ERROR_PASSWD_EXPIRED                 (RASBASE+48)
  261. /*
  262.  * The password for this account has expired.%0
  263.  */
  264.  
  265. #define ERROR_NO_DIALIN_PERMISSION           (RASBASE+49)
  266. /*
  267.  * The account does not have permission to dial in.%0
  268.  */
  269.  
  270. #define ERROR_SERVER_NOT_RESPONDING          (RASBASE+50)
  271. /*
  272.  * The remote access server is not responding.%0
  273.  */
  274.  
  275. #define ERROR_FROM_DEVICE                    (RASBASE+51)
  276. /*
  277.  * The modem (or other connecting device) has reported an error.%0
  278.  */
  279.  
  280. #define ERROR_UNRECOGNIZED_RESPONSE          (RASBASE+52)
  281. /*
  282.  * There was an unrecognized response from the modem (or other connecting device).%0
  283.  */
  284.  
  285. #define ERROR_MACRO_NOT_FOUND                (RASBASE+53)
  286. /*
  287.  * A macro required by the modem (or other connecting device) was not found in the device.INF file.%0
  288.  */
  289.  
  290. #define ERROR_MACRO_NOT_DEFINED              (RASBASE+54)
  291. /*
  292.  * A command or response in the device.INF file section refers to an undefined macro.%0
  293.  */
  294.  
  295. #define ERROR_MESSAGE_MACRO_NOT_FOUND        (RASBASE+55)
  296. /*
  297.  * The <message> macro was not found in the device.INF file section.%0
  298.  */
  299.  
  300. #define ERROR_DEFAULTOFF_MACRO_NOT_FOUND     (RASBASE+56)
  301. /*
  302.  * The <defaultoff> macro in the device.INF file section contains an undefined macro.%0
  303.  */
  304.  
  305. #define ERROR_FILE_COULD_NOT_BE_OPENED       (RASBASE+57)
  306. /*
  307.  * The device.INF file could not be opened.%0
  308.  */
  309.  
  310. #define ERROR_DEVICENAME_TOO_LONG            (RASBASE+58)
  311. /*
  312.  * The device name in the device.INF or media.INI file is too long.%0
  313.  */
  314.  
  315. #define ERROR_DEVICENAME_NOT_FOUND           (RASBASE+59)
  316. /*
  317.  * The media.INI file refers to an unknown device name.%0
  318.  */
  319.  
  320. #define ERROR_NO_RESPONSES                   (RASBASE+60)
  321. /*
  322.  * The device.INF file contains no responses for the command.%0
  323.  */
  324.  
  325. #define ERROR_NO_COMMAND_FOUND               (RASBASE+61)
  326. /*
  327.  * The device.INF file is missing a command.%0
  328.  */
  329.  
  330. #define ERROR_WRONG_KEY_SPECIFIED            (RASBASE+62)
  331. /*
  332.  * There was an attempt to set a macro not listed in device.INF file section.%0
  333.  */
  334.  
  335. #define ERROR_UNKNOWN_DEVICE_TYPE            (RASBASE+63)
  336. /*
  337.  * The media.INI file refers to an unknown device type.%0
  338.  */
  339.  
  340. #define ERROR_ALLOCATING_MEMORY              (RASBASE+64)
  341. /*
  342.  * The system has run out of memory.%0
  343.  */
  344.  
  345. #define ERROR_PORT_NOT_CONFIGURED            (RASBASE+65)
  346. /*
  347.  * The modem (or other connecting device) is not properly configured.%0
  348.  */
  349.  
  350. #define ERROR_DEVICE_NOT_READY               (RASBASE+66)
  351. /*
  352.  * The modem (or other connecting device) is not functioning.%0
  353.  */
  354.  
  355. #define ERROR_READING_INI_FILE               (RASBASE+67)
  356. /*
  357.  * The system was unable to read the media.INI file.%0
  358.  */
  359.  
  360. #define ERROR_NO_CONNECTION                  (RASBASE+68)
  361. /*
  362.  * The connection was terminated.%0
  363.  */
  364.  
  365. #define ERROR_BAD_USAGE_IN_INI_FILE          (RASBASE+69)
  366. /*
  367.  * The usage parameter in the media.INI file is invalid.%0
  368.  */
  369.  
  370. #define ERROR_READING_SECTIONNAME            (RASBASE+70)
  371. /*
  372.  * The system was unable to read the section name from the media.INI file.%0
  373.  */
  374.  
  375. #define ERROR_READING_DEVICETYPE             (RASBASE+71)
  376. /*
  377.  * The system was unable to read the device type from the media.INI file.%0
  378.  */
  379.  
  380. #define ERROR_READING_DEVICENAME             (RASBASE+72)
  381. /*
  382.  * The system was unable to read the device name from the media.INI file.%0
  383.  */
  384.  
  385. #define ERROR_READING_USAGE                  (RASBASE+73)
  386. /*
  387.  * The system was unable to read the usage from the media.INI file.%0
  388.  */
  389.  
  390. #define ERROR_READING_MAXCONNECTBPS          (RASBASE+74)
  391. /*
  392.  * The system was unable to read the maximum connection BPS rate from the media.INI file.%0
  393.  */
  394.  
  395. #define ERROR_READING_MAXCARRIERBPS          (RASBASE+75)
  396. /*
  397.  * The system was unable to read the maximum carrier connection speed from the media.INI file.%0
  398.  */
  399.  
  400. #define ERROR_LINE_BUSY                      (RASBASE+76)
  401. /*
  402.  * The phone line is busy.%0
  403.  */
  404.  
  405. #define ERROR_VOICE_ANSWER                   (RASBASE+77)
  406. /*
  407.  * A person answered instead of a modem (or other connecting device).%0
  408.  */
  409.  
  410. #define ERROR_NO_ANSWER                      (RASBASE+78)
  411. /*
  412.  * There was no answer.%0
  413.  */
  414.  
  415. #define ERROR_NO_CARRIER                     (RASBASE+79)
  416. /*
  417.  * The system could not detect the carrier.%0
  418.  */
  419.  
  420. #define ERROR_NO_DIALTONE                    (RASBASE+80)
  421. /*
  422.  * There was no dial tone.%0
  423.  */
  424.  
  425. #define ERROR_IN_COMMAND                     (RASBASE+81)
  426. /*
  427.  * The modem (or other connecting device) reported a general error.%0
  428.  */
  429.  
  430. #define ERROR_WRITING_SECTIONNAME            (RASBASE+82)
  431. /*
  432.  * There was an error in writing the section name.%0
  433.  */
  434.  
  435. #define ERROR_WRITING_DEVICETYPE             (RASBASE+83)
  436. /*
  437.  * There was an error in writing the device type.%0
  438.  */
  439.  
  440. #define ERROR_WRITING_DEVICENAME             (RASBASE+84)
  441. /*
  442.  * There was an error in writing the device name.%0
  443.  */
  444.  
  445. #define ERROR_WRITING_MAXCONNECTBPS          (RASBASE+85)
  446. /*
  447.  * There was an error in writing the maximum connection speed.
  448.  */
  449.  
  450. #define ERROR_WRITING_MAXCARRIERBPS          (RASBASE+86)
  451. /*
  452.  * There was an error in writing the maximum carrier speed.%0
  453.  */
  454.  
  455. #define ERROR_WRITING_USAGE                  (RASBASE+87)
  456. /*
  457.  * There was an error in writing the usage.%0
  458.  */
  459.  
  460. #define ERROR_WRITING_DEFAULTOFF             (RASBASE+88)
  461. /*
  462.  *  There was an error in writing the default-off.%0
  463.  */
  464.  
  465. #define ERROR_READING_DEFAULTOFF             (RASBASE+89)
  466. /*
  467.  *  There was an error in reading the default-off.%0
  468.  */
  469.  
  470. #define ERROR_EMPTY_INI_FILE                 (RASBASE+90)
  471. /*
  472.  * ERROR_EMPTY_INI_FILE%0
  473.  */
  474.  
  475. #define ERROR_AUTHENTICATION_FAILURE         (RASBASE+91)
  476. /*
  477.  * Access was denied because the username and/or password was invalid on the domain.%0
  478.  */
  479.  
  480. #define ERROR_PORT_OR_DEVICE                 (RASBASE+92)
  481. /*
  482.  * There was a hardware failure in the modem (or other connecting device).%0
  483.  */
  484.  
  485. #define ERROR_NOT_BINARY_MACRO               (RASBASE+93)
  486. /*
  487.  * ERROR_NOT_BINARY_MACRO%0
  488.  */
  489.  
  490. #define ERROR_DCB_NOT_FOUND                  (RASBASE+94)
  491. /*
  492.  * ERROR_DCB_NOT_FOUND%0
  493.  */
  494.  
  495. #define ERROR_STATE_MACHINES_NOT_STARTED     (RASBASE+95)
  496. /*
  497.  * The state machines are not started.%0
  498.  */
  499.  
  500. #define ERROR_STATE_MACHINES_ALREADY_STARTED (RASBASE+96)
  501. /*
  502.  * The state machines are already started.%0
  503.  */
  504.  
  505. #define ERROR_PARTIAL_RESPONSE_LOOPING       (RASBASE+97)
  506. /*
  507.  * The response looping did not complete.%0
  508.  */
  509.  
  510. #define ERROR_UNKNOWN_RESPONSE_KEY           (RASBASE+98)
  511. /*
  512.  * A response keyname in the device.INF file is not in the expected format.%0
  513.  */
  514.  
  515. #define ERROR_RECV_BUF_FULL                  (RASBASE+99)
  516. /*
  517.  * The modem (or other connecting device) response caused a buffer overflow.%0
  518.  */
  519.  
  520. #define ERROR_CMD_TOO_LONG                   (RASBASE+100)
  521. /*
  522.  * The expanded command in the device.INF file is too long.%0
  523.  */
  524.  
  525. #define ERROR_UNSUPPORTED_BPS                (RASBASE+101)
  526. /*
  527.  * The modem moved to a connection speed not supported by the COM driver.%0
  528.  */
  529.  
  530. #define ERROR_UNEXPECTED_RESPONSE            (RASBASE+102)
  531. /*
  532.  * Device response received when none expected.%0
  533.  */
  534.  
  535. #define ERROR_INTERACTIVE_MODE               (RASBASE+103)
  536. /*
  537.  * The connection needs information from you, but the application does not allow user interaction.%0
  538.  */
  539.  
  540. #define ERROR_BAD_CALLBACK_NUMBER            (RASBASE+104)
  541. /*
  542.  * The callback number is invalid.%0
  543.  */
  544.  
  545. #define ERROR_INVALID_AUTH_STATE             (RASBASE+105)
  546. /*
  547.  * The authorization state is invalid.%0
  548.  */
  549.  
  550. #define ERROR_WRITING_INITBPS                (RASBASE+106)
  551. /*
  552.  * ERROR_WRITING_INITBPS%0
  553.  */
  554.  
  555. #define ERROR_X25_DIAGNOSTIC                 (RASBASE+107)
  556. /*
  557.  * There was an error related to the X.25 protocol.%0
  558.  */
  559.  
  560. #define ERROR_ACCT_EXPIRED                   (RASBASE+108)
  561. /*
  562.  * The account has expired.%0
  563.  */
  564.  
  565. #define ERROR_CHANGING_PASSWORD              (RASBASE+109)
  566. /*
  567.  * There was an error changing the password on the domain.  The password might have been too short or might have matched a previously used password.%0
  568.  */
  569.  
  570. #define ERROR_OVERRUN                        (RASBASE+110)
  571. /*
  572.  * Serial overrun errors were detected while communicating with the modem.%0
  573.  */
  574.  
  575. #define ERROR_RASMAN_CANNOT_INITIALIZE         (RASBASE+111)
  576. /*
  577.  * The Remote Access Service Manager could not start. Additional information is provided in the event log.%0
  578.  */
  579.  
  580. #define ERROR_BIPLEX_PORT_NOT_AVAILABLE      (RASBASE+112)
  581. /*
  582.  * The two-way port is initializing.  Wait a few seconds and redial.%0
  583.  */
  584.  
  585. #define ERROR_NO_ACTIVE_ISDN_LINES           (RASBASE+113)
  586. /*
  587.  * No active ISDN lines are available.%0
  588.  */
  589.  
  590. #define ERROR_NO_ISDN_CHANNELS_AVAILABLE     (RASBASE+114)
  591. /*
  592.  * No ISDN channels are available to make the call.%0
  593.  */
  594.  
  595. #define ERROR_TOO_MANY_LINE_ERRORS           (RASBASE+115)
  596. /*
  597.  * Too many errors occurred because of poor phone line quality.%0
  598.  */
  599.  
  600. #define ERROR_IP_CONFIGURATION               (RASBASE+116)
  601. /*
  602.  * The Remote Access Service IP configuration is unusable.%0
  603.  */
  604.  
  605. #define ERROR_NO_IP_ADDRESSES                (RASBASE+117)
  606. /*
  607.  * No IP addresses are available in the static pool of Remote Access Service IP addresses.%0
  608.  */
  609.  
  610. #define ERROR_PPP_TIMEOUT                    (RASBASE+118)
  611. /*
  612.  * The connection timed out waiting for a valid response from the remote computer.%0
  613.  */
  614.  
  615. #define ERROR_PPP_REMOTE_TERMINATED          (RASBASE+119)
  616. /*
  617.  * The connection was terminated by the remote computer.%0
  618.  */
  619.  
  620. #define ERROR_PPP_NO_PROTOCOLS_CONFIGURED    (RASBASE+120)
  621. /*
  622.  * The connection attempt failed because your computer and the remote computer could not agree on PPP control protocols.%0
  623.  */
  624.  
  625. #define ERROR_PPP_NO_RESPONSE                (RASBASE+121)
  626. /*
  627.  * The remote computer is not responding.%0
  628.  */
  629.  
  630. #define ERROR_PPP_INVALID_PACKET             (RASBASE+122)
  631. /*
  632.  * Invalid data was received from the remote computer. This data was ignored.%0
  633.  */
  634.  
  635. #define ERROR_PHONE_NUMBER_TOO_LONG          (RASBASE+123)
  636. /*
  637.  * The phone number, including prefix and suffix, is too long.%0
  638.  */
  639.  
  640. #define ERROR_IPXCP_NO_DIALOUT_CONFIGURED    (RASBASE+124)
  641. /*
  642.  * The IPX protocol cannot dial out on the modem (or other connecting device) because this computer is not configured for dialing out (it is an IPX router).%0
  643.  */
  644.  
  645. #define ERROR_IPXCP_NO_DIALIN_CONFIGURED     (RASBASE+125)
  646. /*
  647.  * The IPX protocol cannot dial in on the modem (or other connecting device) because this computer is not configured for dialing in (the IPX router is not installed).%0
  648.  */
  649.  
  650. #define ERROR_IPXCP_DIALOUT_ALREADY_ACTIVE   (RASBASE+126)
  651. /*
  652.  * The IPX protocol cannot be used for dialing out on more than one modem (or other connecting device) at a time.%0
  653.  */
  654.  
  655. #define ERROR_ACCESSING_TCPCFGDLL            (RASBASE+127)
  656. /*
  657.  * Cannot access TCPCFG.DLL.%0
  658.  */
  659.  
  660. #define ERROR_NO_IP_RAS_ADAPTER              (RASBASE+128)
  661. /*
  662.  * The system cannot find an IP adapter.%0
  663.  */
  664.  
  665. #define ERROR_SLIP_REQUIRES_IP               (RASBASE+129)
  666. /*
  667.  * SLIP cannot be used unless the IP protocol is installed.%0
  668.  */
  669.  
  670. #define ERROR_PROJECTION_NOT_COMPLETE        (RASBASE+130)
  671. /*
  672.  * Computer registration is not complete.%0
  673.  */
  674.  
  675. #define ERROR_PROTOCOL_NOT_CONFIGURED        (RASBASE+131)
  676. /*
  677.  * The protocol is not configured.%0
  678.  */
  679.  
  680. #define ERROR_PPP_NOT_CONVERGING             (RASBASE+132)
  681. /*
  682.  *Your computer and the remote computer could not agree on PPP control protocols.%0
  683.  */
  684.  
  685. #define ERROR_PPP_CP_REJECTED                (RASBASE+133)
  686. /*
  687.  * Your computer and the remote computer could not agree on PPP control protocols.%0
  688.  */
  689.  
  690. #define ERROR_PPP_LCP_TERMINATED             (RASBASE+134)
  691. /*
  692.  * The PPP link control protocol was terminated.%0
  693.  */
  694.  
  695. #define ERROR_PPP_REQUIRED_ADDRESS_REJECTED  (RASBASE+135)
  696. /*
  697.  * The requested address was rejected by the server.%0
  698.  */
  699.  
  700. #define ERROR_PPP_NCP_TERMINATED             (RASBASE+136)
  701. /*
  702.  * The remote computer terminated the control protocol.%0
  703.  */
  704.  
  705. #define ERROR_PPP_LOOPBACK_DETECTED          (RASBASE+137)
  706. /*
  707.  * Loopback was detected.%0
  708.  */
  709.  
  710. #define ERROR_PPP_NO_ADDRESS_ASSIGNED        (RASBASE+138)
  711. /*
  712.  * The server did not assign an address.%0
  713.  */
  714.  
  715. #define ERROR_CANNOT_USE_LOGON_CREDENTIALS   (RASBASE+139)
  716. /*
  717.  * The authentication protocol required by the remote server cannot use the stored password.  Redial, entering the password explicitly.%0
  718.  */
  719.  
  720. #define ERROR_TAPI_CONFIGURATION             (RASBASE+140)
  721. /*
  722.  * An invalid dialing rule was detected.%0
  723.  */
  724.  
  725. #define ERROR_NO_LOCAL_ENCRYPTION            (RASBASE+141)
  726. /*
  727.  * The local computer does not support the required data encryption type.%0
  728.  */
  729.  
  730. #define ERROR_NO_REMOTE_ENCRYPTION           (RASBASE+142)
  731. /*
  732.  * The remote computer does not support the required data encryption type.%0
  733.  */
  734.  
  735. #define ERROR_REMOTE_REQUIRES_ENCRYPTION     (RASBASE+143)
  736. /*
  737.  * The remote computer requires data encryption.%0
  738.  */
  739.  
  740. #define ERROR_IPXCP_NET_NUMBER_CONFLICT      (RASBASE+144)
  741. /*
  742.  * The system cannot use the IPX network number assigned by the remote computer.  Additional information is provided in the event log.%0
  743.  */
  744.  
  745. #define ERROR_INVALID_SMM                    (RASBASE+145)
  746. /*
  747.  * ERROR_INVALID_SMM%0
  748.  */
  749.  
  750. #define ERROR_SMM_UNINITIALIZED              (RASBASE+146)
  751. /*
  752.  * ERROR_SMM_UNINITIALIZED%0
  753.  */
  754.  
  755. #define ERROR_NO_MAC_FOR_PORT                (RASBASE+147)
  756. /*
  757.  * ERROR_NO_MAC_FOR_PORT%0
  758.  */
  759.  
  760. #define ERROR_SMM_TIMEOUT                    (RASBASE+148)
  761. /*
  762.  * ERROR_SMM_TIMEOUT%0
  763.  */
  764.  
  765. #define ERROR_BAD_PHONE_NUMBER               (RASBASE+149)
  766. /*
  767.  * ERROR_BAD_PHONE_NUMBER%0
  768.  */
  769.  
  770. #define ERROR_WRONG_MODULE                   (RASBASE+150)
  771. /*
  772.  * ERROR_WRONG_MODULE%0
  773.  */
  774.  
  775. #define ERROR_INVALID_CALLBACK_NUMBER        (RASBASE+151)
  776. /*
  777.  * The callback number contains an invalid character.  Only the following 18 characters are allowed:  0 to 9, T, P, W, (, ), -, @, and space.%0
  778.  */
  779.  
  780. #define ERROR_SCRIPT_SYNTAX                  (RASBASE+152)
  781. /*
  782.  * A syntax error was encountered while processing a script.%0
  783.  */
  784.  
  785. #define ERROR_HANGUP_FAILED                  (RASBASE+153)
  786. /*
  787.  * The connection could not be disconnected because it was created by the multi-protocol router.%0
  788.  */
  789.  
  790. #define ERROR_BUNDLE_NOT_FOUND               (RASBASE+154)
  791. /*
  792.  * The system could not find the multi-link bundle.%0
  793.  */
  794.  
  795. #define ERROR_CANNOT_DO_CUSTOMDIAL           (RASBASE+155)
  796. /*
  797.  * The system cannot perform automated dial because this connection  has a custom dialer specified.%0
  798.  */ 
  799.  
  800. #define ERROR_DIAL_ALREADY_IN_PROGRESS      (RASBASE+156)
  801. /*
  802.  * This connection is already being dialed.%0
  803.  */
  804.  
  805. #define ERROR_RASAUTO_CANNOT_INITIALIZE        (RASBASE+157)
  806. /*
  807.  * Remote Access Services could not be started automatically. Additional information is provided in the event log.%0
  808.  */
  809.  
  810. #define ERROR_CONNECTION_ALREADY_SHARED     (RASBASE+158)
  811. /*
  812.  * Internet Connection Sharing is already enabled on the connection.%0
  813.  */
  814.  
  815. #define ERROR_SHARING_CHANGE_FAILED         (RASBASE+159)
  816. /*
  817.  * An error occurred while the existing Internet Connection Sharing
  818.  * settings were being changed.%0
  819.  */
  820.  
  821. #define ERROR_SHARING_ROUTER_INSTALL        (RASBASE+160)
  822. /*
  823.  * An error occurred while routing capabilities were being enabled.%0
  824.  */
  825.  
  826. #define ERROR_SHARE_CONNECTION_FAILED       (RASBASE+161)
  827. /*
  828.  * An error occurred while Internet Connection Sharing was being enabled
  829.  * for the connection.%0
  830.  */
  831.  
  832. #define ERROR_SHARING_PRIVATE_INSTALL       (RASBASE+162)
  833. /*
  834.  * An error occurred while the local network was being configured for sharing.%0
  835.  */
  836.  
  837. #define ERROR_CANNOT_SHARE_CONNECTION       (RASBASE+163)
  838. /*
  839.  * Internet Connection Sharing cannot be enabled.
  840.  * There is more than one LAN connection other than the connection
  841.  * to be shared.%0
  842.  */
  843.  
  844. #define ERROR_NO_SMART_CARD_READER          (RASBASE+164)
  845. /*
  846.  * No smart card reader is installed.%0
  847.  */
  848.  
  849. #define ERROR_SHARING_ADDRESS_EXISTS        (RASBASE+165)
  850. /*
  851.  * Internet Connection Sharing cannot be enabled.
  852.  * A LAN connection is already configured with the IP address
  853.  * that is required for automatic IP addressing.%0
  854.  */
  855.  
  856. #define ERROR_NO_CERTIFICATE                (RASBASE+166)
  857. /*
  858.  * A certificate could not be found. Connections that use the L2TP protocol over IPSec require the installation of a machine certificate, also known as a computer certificate.%0
  859.  */
  860.  
  861. #define ERROR_SHARING_MULTIPLE_ADDRESSES    (RASBASE+167)
  862. /*
  863.  * Internet Connection Sharing cannot be enabled. The LAN connection selected
  864.  * as the private network has more than one IP address configured.
  865.  * Please reconfigure the LAN connection with a single IP address
  866.  * before enabling Internet Connection Sharing.%0
  867.  */
  868.  
  869. #define ERROR_FAILED_TO_ENCRYPT             (RASBASE+168)
  870. /*
  871.  * The connection attempt failed because of failure to encrypt data.%0
  872.  */
  873.  
  874. #define ERROR_BAD_ADDRESS_SPECIFIED         (RASBASE+169)
  875. /*
  876.  * The specified destination is not reachable.%0
  877.  */
  878.  
  879. #define ERROR_CONNECTION_REJECT             (RASBASE+170)
  880. /*
  881.  * The remote computer rejected the connection attempt.%0
  882.  */
  883.  
  884. #define ERROR_CONGESTION                    (RASBASE+171)
  885. /*
  886.  * The connection attempt failed because the network is busy.%0
  887.  */
  888.  
  889. #define ERROR_INCOMPATIBLE                  (RASBASE+172)
  890. /*
  891.  * The remote computer's network hardware is incompatible with the type of call requested.%0
  892.  */
  893.  
  894. #define ERROR_NUMBERCHANGED                 (RASBASE+173)
  895. /*
  896.  * The connection attempt failed because the destination number has changed.%0
  897.  */
  898.  
  899. #define ERROR_TEMPFAILURE                   (RASBASE+174)
  900. /*
  901.  * The connection attempt failed because of a temporary failure.  Try connecting again.%0
  902.  */ 
  903.  
  904. #define ERROR_BLOCKED                       (RASBASE+175)
  905. /*
  906.  * The call was blocked by the remote computer.%0
  907.  */
  908.  
  909. #define ERROR_DONOTDISTURB                  (RASBASE+176)
  910. /*
  911.  * The call could not be connected because the remote computer has invoked the Do Not Disturb feature.%0
  912.  */
  913.  
  914. #define ERROR_OUTOFORDER                    (RASBASE+177)
  915. /*
  916.  * The connection attempt failed because the modem (or other connecting device) on the remote computer is out of order.%0
  917.  */
  918.  
  919. #define ERROR_UNABLE_TO_AUTHENTICATE_SERVER (RASBASE+178)
  920. /*
  921.  * It was not possible to verify the identity of the server.%0
  922.  */
  923.  
  924. #define ERROR_SMART_CARD_REQUIRED           (RASBASE+179)
  925. /*
  926.  * To dial out using this connection you must use a smart card.%0
  927.  */
  928.  
  929. #define ERROR_INVALID_FUNCTION_FOR_ENTRY    (RASBASE+180)
  930. /*
  931.  * An attempted function is not valid for this connection.%0
  932.  */
  933.  
  934. #define ERROR_CERT_FOR_ENCRYPTION_NOT_FOUND (RASBASE+181)
  935. /*
  936.  * The encryption attempt failed because no valid certificate was found.%0
  937.  */
  938.  
  939. #define ERROR_SHARING_RRAS_CONFLICT         (RASBASE+182)
  940. /*
  941.  * Connection Sharing (NAT) is currently installed as a routing protocol, and must be 
  942.  * removed before enabling Internet Connection Sharing.%0
  943.  */
  944.  
  945. #define ERROR_SHARING_NO_PRIVATE_LAN        (RASBASE+183)
  946. /*
  947.  * Internet Connection Sharing cannot be enabled. The LAN connection selected
  948.  * as the private network is either not present, or is disconnected
  949.  * from the network. Please ensure that the LAN adapter is connected
  950.  * before enabling Internet Connection Sharing.%0
  951.  */
  952.  
  953. #define ERROR_NO_DIFF_USER_AT_LOGON         (RASBASE+184)
  954. /*
  955.  * You cannot dial using this connection at logon time, because it is
  956.  * configured to use a user name different than the one on the smart
  957.  * card. If you want to use it at logon time, you must configure it to
  958.  * use the user name on the smart card.%0
  959.  */
  960.  
  961. #define ERROR_NO_REG_CERT_AT_LOGON          (RASBASE+185)
  962. /*
  963.  * You cannot dial using this connection at logon time, because it is
  964.  * not configured to use a smart card. If you want to use it at logon
  965.  * time, you must edit the properties of this connection so that it uses
  966.  * a smart card.%0
  967.  */
  968.  
  969. #define ERROR_OAKLEY_NO_CERT                (RASBASE+186)
  970. /*
  971.  * The L2TP connection attempt failed because there is no valid machine certificate on your computer for security authentication.%0
  972.  */
  973.  
  974. #define ERROR_OAKLEY_AUTH_FAIL              (RASBASE+187)
  975. /*
  976.  * The L2TP connection attempt failed because the security layer could not authenticate the remote computer.%0
  977.  */
  978.  
  979. #define ERROR_OAKLEY_ATTRIB_FAIL            (RASBASE+188)
  980. /*
  981.  * The L2TP connection attempt failed because the security layer could not negotiate compatible parameters with the remote computer.%0
  982.  */
  983.  
  984. #define ERROR_OAKLEY_GENERAL_PROCESSING     (RASBASE+189)
  985. /*
  986.  * The L2TP connection attempt failed because the security layer encountered a processing error during initial negotiations with the remote computer.%0
  987.  */
  988.  
  989. #define ERROR_OAKLEY_NO_PEER_CERT           (RASBASE+190)
  990. /*
  991.  * The L2TP connection attempt failed because certificate validation on the remote computer failed.%0
  992.  */
  993.  
  994. #define ERROR_OAKLEY_NO_POLICY              (RASBASE+191)
  995. /*
  996.  * The L2TP connection attempt failed because security policy for the connection was not found.%0
  997.  */
  998.  
  999. #define ERROR_OAKLEY_TIMED_OUT              (RASBASE+192)
  1000. /*
  1001.  * The L2TP connection attempt failed because security negotiation timed out.%0
  1002.  */
  1003.  
  1004. #define ERROR_OAKLEY_ERROR                  (RASBASE+193)
  1005. /*
  1006.  * The L2TP connection attempt failed because an error occurred while negotiating security.%0
  1007.  */
  1008.  
  1009. #define ERROR_UNKNOWN_FRAMED_PROTOCOL       (RASBASE+194)
  1010. /*
  1011.  * The Framed Protocol RADIUS attribute for this user is not PPP.%0
  1012.  */
  1013.  
  1014. #define ERROR_WRONG_TUNNEL_TYPE             (RASBASE+195)
  1015. /*
  1016.  * The Tunnel Type RADIUS attribute for this user is not correct.%0
  1017.  */
  1018.  
  1019. #define ERROR_UNKNOWN_SERVICE_TYPE          (RASBASE+196)
  1020. /*
  1021.  * The Service Type RADIUS attribute for this user is neither Framed nor Callback Framed.%0
  1022.  */
  1023.  
  1024. #define ERROR_CONNECTING_DEVICE_NOT_FOUND   (RASBASE+197)
  1025. /*
  1026.  * The connection failed because the modem (or other connecting device) was not found. Please make sure that the modem or other connecting device is installed.%0
  1027.  */
  1028.  
  1029. #define ERROR_NO_EAPTLS_CERTIFICATE          (RASBASE+198)
  1030. /*
  1031.  * A certificate could not be found that can be used with this Extensible Authentication Protocol.%0
  1032.  */
  1033.  
  1034. #define RASBASEEND                          (RASBASE+198)
  1035.  
  1036. #pragma option pop /*P_O_Pop*/
  1037. #endif // _RASERROR_H_
  1038.