JwaLmErr.pas
上传用户:davidchvip
上传日期:2009-07-28
资源大小:1749k
文件大小:50k
源码类别:

Windows编程

开发平台:

Delphi

  1. {******************************************************************************}
  2. {                                                                       }
  3. { Lan Manager Error API interface Unit for Object Pascal                       }
  4. {                                                                       }
  5. { Portions created by Microsoft are Copyright (C) 1995-2001 Microsoft          }
  6. { Corporation. All Rights Reserved.                                            }
  7. {                 }
  8. { The original file is: lmerr.h, released November 2001. The original Pascal   }
  9. { code is: LmErr.pas, released Februari 2002. The initial developer of the     }
  10. { Pascal code is Marcel van Brakel (brakelm@chello.nl).                        }
  11. {                                                                              }
  12. { Portions created by Marcel van Brakel are Copyright (C) 1999-2001            }
  13. { Marcel van Brakel. All Rights Reserved.                                      }
  14. {                 }
  15. { Obtained through: Joint Endeavour of Delphi Innovators (Project JEDI)        }
  16. {                }
  17. { You may retrieve the latest version of this file at the Project JEDI home    }
  18. { page, located at http://delphi-jedi.org or my personal homepage located at   }
  19. { http://members.chello.nl/m.vanbrakel2                                        }
  20. {                }
  21. { The contents of this file are used with permission, subject to the Mozilla   }
  22. { Public License Version 1.1 (the "License"); you may not use this file except }
  23. { in compliance with the License. You may obtain a copy of the License at      }
  24. { http://www.mozilla.org/MPL/MPL-1.1.html                                      }
  25. {                                                                              }
  26. { Software distributed under the License is distributed on an "AS IS" basis,   }
  27. { WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for }
  28. { the specific language governing rights and limitations under the License.    }
  29. {                                                                              }
  30. { Alternatively, the contents of this file may be used under the terms of the  }
  31. { GNU Lesser General Public License (the  "LGPL License"), in which case the   }
  32. { provisions of the LGPL License are applicable instead of those above.        }
  33. { If you wish to allow use of your version of this file only under the terms   }
  34. { of the LGPL License and not to allow others to use your version of this file }
  35. { under the MPL, indicate your decision by deleting  the provisions above and  }
  36. { replace  them with the notice and other provisions required by the LGPL      }
  37. { License.  If you do not delete the provisions above, a recipient may use     }
  38. { your version of this file under either the MPL or the LGPL License.          }
  39. {                 }
  40. { For more information about the LGPL: http://www.gnu.org/copyleft/lesser.html }
  41. {                 }
  42. {******************************************************************************}
  43. unit JwaLmErr;
  44. {$WEAKPACKAGEUNIT}
  45. {$HPPEMIT ''}
  46. {$HPPEMIT '#include "lmerr.h"'}
  47. {$HPPEMIT ''}
  48. {$I WINDEFINES.INC}
  49. interface
  50. const
  51.   NERR_Success = 0; // Success
  52.   {$EXTERNALSYM NERR_Success}
  53. // ERROR_ equates can be intermixed with NERR_ equates.
  54. //    NERR_BASE is the base of error codes from network utilities,
  55. //      chosen to avoid conflict with system and redirector error codes.
  56. //      2100 is a value that has been assigned to us by system.
  57.   NERR_BASE = 2100;
  58.   {$EXTERNALSYM NERR_BASE}
  59. //*INTERNAL_ONLY*
  60. {**********WARNING *****************
  61.  *See the comment in lmcons.h for  *
  62.  *info on the allocation of errors *
  63.  ***********************************}
  64. {**********WARNING *****************
  65.  *The range 2750-2799 has been     *
  66.  *allocated to the IBM LAN Server  *
  67.  ***********************************}
  68. {**********WARNING *****************
  69.  *The range 2900-2999 has been     *
  70.  *reserved for Microsoft OEMs      *
  71.  ***********************************}
  72. // UNUSED BASE+0
  73. // UNUSED BASE+1
  74.   NERR_NetNotStarted = (NERR_BASE+2); // The workstation driver is not installed.
  75.   {$EXTERNALSYM NERR_NetNotStarted}
  76.   NERR_UnknownServer = (NERR_BASE+3); // The server could not be located.
  77.   {$EXTERNALSYM NERR_UnknownServer}
  78.   NERR_ShareMem      = (NERR_BASE+4); // An internal error occurred.  The network cannot access a shared memory segment.
  79.   {$EXTERNALSYM NERR_ShareMem}
  80.   NERR_NoNetworkResource = (NERR_BASE+5); // A network resource shortage occurred .
  81.   {$EXTERNALSYM NERR_NoNetworkResource}
  82.   NERR_RemoteOnly        = (NERR_BASE+6); // This operation is not supported on workstations.
  83.   {$EXTERNALSYM NERR_RemoteOnly}
  84.   NERR_DevNotRedirected  = (NERR_BASE+7); // The device is not connected.
  85.   {$EXTERNALSYM NERR_DevNotRedirected}
  86. // NERR_BASE+8 is used for ERROR_CONNECTED_OTHER_PASSWORD
  87. // NERR_BASE+9 is used for ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT
  88. // UNUSED BASE+10
  89. // UNUSED BASE+11
  90. // UNUSED BASE+12
  91. // UNUSED BASE+13
  92.   NERR_ServerNotStarted = (NERR_BASE+14); // The Server service is not started.
  93.   {$EXTERNALSYM NERR_ServerNotStarted}
  94.   NERR_ItemNotFound     = (NERR_BASE+15); // The queue is empty.
  95.   {$EXTERNALSYM NERR_ItemNotFound}
  96.   NERR_UnknownDevDir    = (NERR_BASE+16); // The device or directory does not exist.
  97.   {$EXTERNALSYM NERR_UnknownDevDir}
  98.   NERR_RedirectedPath   = (NERR_BASE+17); // The operation is invalid on a redirected resource.
  99.   {$EXTERNALSYM NERR_RedirectedPath}
  100.   NERR_DuplicateShare   = (NERR_BASE+18); // The name has already been shared.
  101.   {$EXTERNALSYM NERR_DuplicateShare}
  102.   NERR_NoRoom           = (NERR_BASE+19); // The server is currently out of the requested resource.
  103.   {$EXTERNALSYM NERR_NoRoom}
  104. // UNUSED BASE+20
  105.   NERR_TooManyItems    = (NERR_BASE+21); // Requested addition of items exceeds the maximum allowed.
  106.   {$EXTERNALSYM NERR_TooManyItems}
  107.   NERR_InvalidMaxUsers = (NERR_BASE+22); // The Peer service supports only two simultaneous users.
  108.   {$EXTERNALSYM NERR_InvalidMaxUsers}
  109.   NERR_BufTooSmall     = (NERR_BASE+23); // The API return buffer is too small.
  110.   {$EXTERNALSYM NERR_BufTooSmall}
  111. // UNUSED BASE+24
  112. // UNUSED BASE+25
  113. // UNUSED BASE+26
  114.   NERR_RemoteErr = (NERR_BASE+27); // A remote API error occurred.
  115.   {$EXTERNALSYM NERR_RemoteErr}
  116. // UNUSED BASE+28
  117. // UNUSED BASE+29
  118. // UNUSED BASE+30
  119.   NERR_LanmanIniError = (NERR_BASE+31); // An error occurred when opening or reading the configuration file.
  120.   {$EXTERNALSYM NERR_LanmanIniError}
  121. // UNUSED BASE+32
  122. // UNUSED BASE+33
  123. // UNUSED BASE+34
  124. // UNUSED BASE+35
  125.   NERR_NetworkError           = (NERR_BASE+36); // A general network error occurred.
  126.   {$EXTERNALSYM NERR_NetworkError}
  127.   NERR_WkstaInconsistentState = (NERR_BASE+37);
  128.   {$EXTERNALSYM NERR_WkstaInconsistentState}
  129.     // The Workstation service is in an inconsistent state. Restart the computer before restarting the Workstation service.
  130.   NERR_WkstaNotStarted   = (NERR_BASE+38); // The Workstation service has not been started.
  131.   {$EXTERNALSYM NERR_WkstaNotStarted}
  132.   NERR_BrowserNotStarted = (NERR_BASE+39); // The requested information is not available.
  133.   {$EXTERNALSYM NERR_BrowserNotStarted}
  134.   NERR_InternalError     = (NERR_BASE+40); // An internal Windows 2000 error occurred.
  135.   {$EXTERNALSYM NERR_InternalError}
  136.   NERR_BadTransactConfig = (NERR_BASE+41); // The server is not configured for transactions.
  137.   {$EXTERNALSYM NERR_BadTransactConfig}
  138.   NERR_InvalidAPI        = (NERR_BASE+42); // The requested API is not supported on the remote server.
  139.   {$EXTERNALSYM NERR_InvalidAPI}
  140.   NERR_BadEventName      = (NERR_BASE+43); // The event name is invalid.
  141.   {$EXTERNALSYM NERR_BadEventName}
  142.   NERR_DupNameReboot     = (NERR_BASE+44); // The computer name already exists on the network. Change it and restart the computer.
  143.   {$EXTERNALSYM NERR_DupNameReboot}
  144. //
  145. //      Config API related
  146. //              Error codes from BASE+45 to BASE+49
  147. // UNUSED BASE+45
  148.   NERR_CfgCompNotFound  = (NERR_BASE+46); // The specified component could not be found in the configuration information.
  149.   {$EXTERNALSYM NERR_CfgCompNotFound}
  150.   NERR_CfgParamNotFound = (NERR_BASE+47); // The specified parameter could not be found in the configuration information.
  151.   {$EXTERNALSYM NERR_CfgParamNotFound}
  152.   NERR_LineTooLong = (NERR_BASE+49); // A line in the configuration file is too long.
  153.   {$EXTERNALSYM NERR_LineTooLong}
  154. //
  155. //      Spooler API related
  156. //              Error codes from BASE+50 to BASE+79
  157.   NERR_QNotFound        = (NERR_BASE+50); // The printer does not exist.
  158.   {$EXTERNALSYM NERR_QNotFound}
  159.   NERR_JobNotFound      = (NERR_BASE+51); // The print job does not exist.
  160.   {$EXTERNALSYM NERR_JobNotFound}
  161.   NERR_DestNotFound     = (NERR_BASE+52); // The printer destination cannot be found.
  162.   {$EXTERNALSYM NERR_DestNotFound}
  163.   NERR_DestExists       = (NERR_BASE+53); // The printer destination already exists.
  164.   {$EXTERNALSYM NERR_DestExists}
  165.   NERR_QExists          = (NERR_BASE+54); // The printer queue already exists.
  166.   {$EXTERNALSYM NERR_QExists}
  167.   NERR_QNoRoom          = (NERR_BASE+55); // No more printers can be added.
  168.   {$EXTERNALSYM NERR_QNoRoom}
  169.   NERR_JobNoRoom        = (NERR_BASE+56); // No more print jobs can be added.
  170.   {$EXTERNALSYM NERR_JobNoRoom}
  171.   NERR_DestNoRoom       = (NERR_BASE+57); // No more printer destinations can be added.
  172.   {$EXTERNALSYM NERR_DestNoRoom}
  173.   NERR_DestIdle         = (NERR_BASE+58); // This printer destination is idle and cannot accept control operations.
  174.   {$EXTERNALSYM NERR_DestIdle}
  175.   NERR_DestInvalidOp    = (NERR_BASE+59); // This printer destination request contains an invalid control function.
  176.   {$EXTERNALSYM NERR_DestInvalidOp}
  177.   NERR_ProcNoRespond    = (NERR_BASE+60); // The print processor is not responding.
  178.   {$EXTERNALSYM NERR_ProcNoRespond}
  179.   NERR_SpoolerNotLoaded = (NERR_BASE+61); // The spooler is not running.
  180.   {$EXTERNALSYM NERR_SpoolerNotLoaded}
  181.   NERR_DestInvalidState = (NERR_BASE+62); // This operation cannot be performed on the print destination in its current state.
  182.   {$EXTERNALSYM NERR_DestInvalidState}
  183.   NERR_QInvalidState    = (NERR_BASE+63); // This operation cannot be performed on the printer queue in its current state.
  184.   {$EXTERNALSYM NERR_QInvalidState}
  185.   NERR_JobInvalidState  = (NERR_BASE+64); // This operation cannot be performed on the print job in its current state.
  186.   {$EXTERNALSYM NERR_JobInvalidState}
  187.   NERR_SpoolNoMemory    = (NERR_BASE+65); // A spooler memory allocation failure occurred.
  188.   {$EXTERNALSYM NERR_SpoolNoMemory}
  189.   NERR_DriverNotFound   = (NERR_BASE+66); // The device driver does not exist.
  190.   {$EXTERNALSYM NERR_DriverNotFound}
  191.   NERR_DataTypeInvalid  = (NERR_BASE+67); // The data type is not supported by the print processor.
  192.   {$EXTERNALSYM NERR_DataTypeInvalid}
  193.   NERR_ProcNotFound     = (NERR_BASE+68); // The print processor is not installed.
  194.   {$EXTERNALSYM NERR_ProcNotFound}
  195. //
  196. //      Service API related
  197. //              Error codes from BASE+80 to BASE+99
  198.   NERR_ServiceTableLocked  = (NERR_BASE+80); // The service database is locked.
  199.   {$EXTERNALSYM NERR_ServiceTableLocked}
  200.   NERR_ServiceTableFull    = (NERR_BASE+81); // The service table is full.
  201.   {$EXTERNALSYM NERR_ServiceTableFull}
  202.   NERR_ServiceInstalled    = (NERR_BASE+82); // The requested service has already been started.
  203.   {$EXTERNALSYM NERR_ServiceInstalled}
  204.   NERR_ServiceEntryLocked  = (NERR_BASE+83); // The service does not respond to control actions.
  205.   {$EXTERNALSYM NERR_ServiceEntryLocked}
  206.   NERR_ServiceNotInstalled = (NERR_BASE+84); // The service has not been started.
  207.   {$EXTERNALSYM NERR_ServiceNotInstalled}
  208.   NERR_BadServiceName      = (NERR_BASE+85); // The service name is invalid.
  209.   {$EXTERNALSYM NERR_BadServiceName}
  210.   NERR_ServiceCtlTimeout   = (NERR_BASE+86); // The service is not responding to the control function.
  211.   {$EXTERNALSYM NERR_ServiceCtlTimeout}
  212.   NERR_ServiceCtlBusy      = (NERR_BASE+87); // The service control is busy.
  213.   {$EXTERNALSYM NERR_ServiceCtlBusy}
  214.   NERR_BadServiceProgName  = (NERR_BASE+88); // The configuration file contains an invalid service program name.
  215.   {$EXTERNALSYM NERR_BadServiceProgName}
  216.   NERR_ServiceNotCtrl      = (NERR_BASE+89); // The service could not be controlled in its present state.
  217.   {$EXTERNALSYM NERR_ServiceNotCtrl}
  218.   NERR_ServiceKillProc     = (NERR_BASE+90); // The service ended abnormally.
  219.   {$EXTERNALSYM NERR_ServiceKillProc}
  220.   NERR_ServiceCtlNotValid  = (NERR_BASE+91); // The requested pause,continue, or stop is not valid for this service.
  221.   {$EXTERNALSYM NERR_ServiceCtlNotValid}
  222.   NERR_NotInDispatchTbl    = (NERR_BASE+92); // The service control dispatcher could not find the service name in the dispatch table.
  223.   {$EXTERNALSYM NERR_NotInDispatchTbl}
  224.   NERR_BadControlRecv      = (NERR_BASE+93); // The service control dispatcher pipe read failed.
  225.   {$EXTERNALSYM NERR_BadControlRecv}
  226.   NERR_ServiceNotStarting  = (NERR_BASE+94); // A thread for the new service could not be created.
  227.   {$EXTERNALSYM NERR_ServiceNotStarting}
  228. //
  229. //      Wksta and Logon API related
  230. //              Error codes from BASE+100 to BASE+118
  231.   NERR_AlreadyLoggedOn   = (NERR_BASE+100); // This workstation is already logged on to the local-area network.
  232.   {$EXTERNALSYM NERR_AlreadyLoggedOn}
  233.   NERR_NotLoggedOn       = (NERR_BASE+101); // The workstation is not logged on to the local-area network.
  234.   {$EXTERNALSYM NERR_NotLoggedOn}
  235.   NERR_BadUsername       = (NERR_BASE+102); // The user name or group name parameter is invalid.
  236.   {$EXTERNALSYM NERR_BadUsername}
  237.   NERR_BadPassword       = (NERR_BASE+103); // The password parameter is invalid.
  238.   {$EXTERNALSYM NERR_BadPassword}
  239.   NERR_UnableToAddName_W = (NERR_BASE+104); // @W The logon processor did not add the message alias.
  240.   {$EXTERNALSYM NERR_UnableToAddName_W}
  241.   NERR_UnableToAddName_F = (NERR_BASE+105); // The logon processor did not add the message alias.
  242.   {$EXTERNALSYM NERR_UnableToAddName_F}
  243.   NERR_UnableToDelName_W = (NERR_BASE+106); // @W The logoff processor did not delete the message alias.
  244.   {$EXTERNALSYM NERR_UnableToDelName_W}
  245.   NERR_UnableToDelName_F = (NERR_BASE+107); // The logoff processor did not delete the message alias.
  246.   {$EXTERNALSYM NERR_UnableToDelName_F}
  247. // UNUSED BASE+108
  248.   NERR_LogonsPaused        = (NERR_BASE+109); // Network logons are paused.
  249.   {$EXTERNALSYM NERR_LogonsPaused}
  250.   NERR_LogonServerConflict = (NERR_BASE+110); // A centralized logon-server conflict occurred.
  251.   {$EXTERNALSYM NERR_LogonServerConflict}
  252.   NERR_LogonNoUserPath     = (NERR_BASE+111); // The server is configured without a valid user path.
  253.   {$EXTERNALSYM NERR_LogonNoUserPath}
  254.   NERR_LogonScriptError    = (NERR_BASE+112); // An error occurred while loading or running the logon script.
  255.   {$EXTERNALSYM NERR_LogonScriptError}
  256. // UNUSED BASE+113
  257.   NERR_StandaloneLogon     = (NERR_BASE+114); // The logon server was not specified.  Your computer will be logged on as STANDALONE.
  258.   {$EXTERNALSYM NERR_StandaloneLogon}
  259.   NERR_LogonServerNotFound = (NERR_BASE+115); // The logon server could not be found.
  260.   {$EXTERNALSYM NERR_LogonServerNotFound}
  261.   NERR_LogonDomainExists   = (NERR_BASE+116); // There is already a logon domain for this computer.
  262.   {$EXTERNALSYM NERR_LogonDomainExists}
  263.   NERR_NonValidatedLogon   = (NERR_BASE+117); // The logon server could not validate the logon.
  264.   {$EXTERNALSYM NERR_NonValidatedLogon}
  265. //
  266. //      ACF API related (access, user, group)
  267. //              Error codes from BASE+119 to BASE+149
  268.   NERR_ACFNotFound          = (NERR_BASE+119); // The security database could not be found.
  269.   {$EXTERNALSYM NERR_ACFNotFound}
  270.   NERR_GroupNotFound        = (NERR_BASE+120); // The group name could not be found.
  271.   {$EXTERNALSYM NERR_GroupNotFound}
  272.   NERR_UserNotFound         = (NERR_BASE+121); // The user name could not be found.
  273.   {$EXTERNALSYM NERR_UserNotFound}
  274.   NERR_ResourceNotFound     = (NERR_BASE+122); // The resource name could not be found.
  275.   {$EXTERNALSYM NERR_ResourceNotFound}
  276.   NERR_GroupExists          = (NERR_BASE+123); // The group already exists.
  277.   {$EXTERNALSYM NERR_GroupExists}
  278.   NERR_UserExists           = (NERR_BASE+124); // The account already exists.
  279.   {$EXTERNALSYM NERR_UserExists}
  280.   NERR_ResourceExists       = (NERR_BASE+125); // The resource permission list already exists.
  281.   {$EXTERNALSYM NERR_ResourceExists}
  282.   NERR_NotPrimary           = (NERR_BASE+126); // This operation is only allowed on the primary domain controller of the domain.
  283.   {$EXTERNALSYM NERR_NotPrimary}
  284.   NERR_ACFNotLoaded         = (NERR_BASE+127); // The security database has not been started.
  285.   {$EXTERNALSYM NERR_ACFNotLoaded}
  286.   NERR_ACFNoRoom            = (NERR_BASE+128); // There are too many names in the user accounts database.
  287.   {$EXTERNALSYM NERR_ACFNoRoom}
  288.   NERR_ACFFileIOFail        = (NERR_BASE+129); // A disk I/O failure occurred.
  289.   {$EXTERNALSYM NERR_ACFFileIOFail}
  290.   NERR_ACFTooManyLists      = (NERR_BASE+130); // The limit of 64 entries per resource was exceeded.
  291.   {$EXTERNALSYM NERR_ACFTooManyLists}
  292.   NERR_UserLogon            = (NERR_BASE+131); // Deleting a user with a session is not allowed.
  293.   {$EXTERNALSYM NERR_UserLogon}
  294.   NERR_ACFNoParent          = (NERR_BASE+132); // The parent directory could not be located.
  295.   {$EXTERNALSYM NERR_ACFNoParent}
  296.   NERR_CanNotGrowSegment    = (NERR_BASE+133); // Unable to add to the security database session cache segment.
  297.   {$EXTERNALSYM NERR_CanNotGrowSegment}
  298.   NERR_SpeGroupOp           = (NERR_BASE+134); // This operation is not allowed on this special group.
  299.   {$EXTERNALSYM NERR_SpeGroupOp}
  300.   NERR_NotInCache           = (NERR_BASE+135); // This user is not cached in user accounts database session cache.
  301.   {$EXTERNALSYM NERR_NotInCache}
  302.   NERR_UserInGroup          = (NERR_BASE+136); // The user already belongs to this group.
  303.   {$EXTERNALSYM NERR_UserInGroup}
  304.   NERR_UserNotInGroup       = (NERR_BASE+137); // The user does not belong to this group.
  305.   {$EXTERNALSYM NERR_UserNotInGroup}
  306.   NERR_AccountUndefined     = (NERR_BASE+138); // This user account is undefined.
  307.   {$EXTERNALSYM NERR_AccountUndefined}
  308.   NERR_AccountExpired       = (NERR_BASE+139); // This user account has expired.
  309.   {$EXTERNALSYM NERR_AccountExpired}
  310.   NERR_InvalidWorkstation   = (NERR_BASE+140); // The user is not allowed to log on from this workstation.
  311.   {$EXTERNALSYM NERR_InvalidWorkstation}
  312.   NERR_InvalidLogonHours    = (NERR_BASE+141); // The user is not allowed to log on at this time.
  313.   {$EXTERNALSYM NERR_InvalidLogonHours}
  314.   NERR_PasswordExpired      = (NERR_BASE+142); // The password of this user has expired.
  315.   {$EXTERNALSYM NERR_PasswordExpired}
  316.   NERR_PasswordCantChange   = (NERR_BASE+143); // The password of this user cannot change.
  317.   {$EXTERNALSYM NERR_PasswordCantChange}
  318.   NERR_PasswordHistConflict = (NERR_BASE+144); // This password cannot be used now.
  319.   {$EXTERNALSYM NERR_PasswordHistConflict}
  320.   NERR_PasswordTooShort     = (NERR_BASE+145); // The password does not meet the password policy requirements. Check the minimum password length, password complexity and password history requirements.
  321.   {$EXTERNALSYM NERR_PasswordTooShort}
  322.   NERR_PasswordTooRecent    = (NERR_BASE+146); // The password of this user is too recent to change.
  323.   {$EXTERNALSYM NERR_PasswordTooRecent}
  324.   NERR_InvalidDatabase      = (NERR_BASE+147); // The security database is corrupted.
  325.   {$EXTERNALSYM NERR_InvalidDatabase}
  326.   NERR_DatabaseUpToDate     = (NERR_BASE+148); // No updates are necessary to this replicant network/local security database.
  327.   {$EXTERNALSYM NERR_DatabaseUpToDate}
  328.   NERR_SyncRequired         = (NERR_BASE+149); // This replicant database is outdated; synchronization is required.
  329.   {$EXTERNALSYM NERR_SyncRequired}
  330. //
  331. //      Use API related
  332. //              Error codes from BASE+150 to BASE+169
  333.   NERR_UseNotFound    = (NERR_BASE+150); // The network connection could not be found.
  334.   {$EXTERNALSYM NERR_UseNotFound}
  335.   NERR_BadAsgType     = (NERR_BASE+151); // This asg_type is invalid.
  336.   {$EXTERNALSYM NERR_BadAsgType}
  337.   NERR_DeviceIsShared = (NERR_BASE+152); // This device is currently being shared.
  338.   {$EXTERNALSYM NERR_DeviceIsShared}
  339. //
  340. //      Message Server related
  341. //              Error codes BASE+170 to BASE+209
  342.   NERR_NoComputerName     = (NERR_BASE+170); // The computer name could not be added as a message alias.  The name may already exist on the network.
  343.   {$EXTERNALSYM NERR_NoComputerName}
  344.   NERR_MsgAlreadyStarted  = (NERR_BASE+171); // The Messenger service is already started.
  345.   {$EXTERNALSYM NERR_MsgAlreadyStarted}
  346.   NERR_MsgInitFailed      = (NERR_BASE+172); // The Messenger service failed to start.
  347.   {$EXTERNALSYM NERR_MsgInitFailed}
  348.   NERR_NameNotFound       = (NERR_BASE+173); // The message alias could not be found on the network.
  349.   {$EXTERNALSYM NERR_NameNotFound}
  350.   NERR_AlreadyForwarded   = (NERR_BASE+174); // This message alias has already been forwarded.
  351.   {$EXTERNALSYM NERR_AlreadyForwarded}
  352.   NERR_AddForwarded       = (NERR_BASE+175); // This message alias has been added but is still forwarded.
  353.   {$EXTERNALSYM NERR_AddForwarded}
  354.   NERR_AlreadyExists      = (NERR_BASE+176); // This message alias already exists locally.
  355.   {$EXTERNALSYM NERR_AlreadyExists}
  356.   NERR_TooManyNames       = (NERR_BASE+177); // The maximum number of added message aliases has been exceeded.
  357.   {$EXTERNALSYM NERR_TooManyNames}
  358.   NERR_DelComputerName    = (NERR_BASE+178); // The computer name could not be deleted.
  359.   {$EXTERNALSYM NERR_DelComputerName}
  360.   NERR_LocalForward       = (NERR_BASE+179); // Messages cannot be forwarded back to the same workstation.
  361.   {$EXTERNALSYM NERR_LocalForward}
  362.   NERR_GrpMsgProcessor    = (NERR_BASE+180); // An error occurred in the domain message processor.
  363.   {$EXTERNALSYM NERR_GrpMsgProcessor}
  364.   NERR_PausedRemote       = (NERR_BASE+181); // The message was sent, but the recipient has paused the Messenger service.
  365.   {$EXTERNALSYM NERR_PausedRemote}
  366.   NERR_BadReceive         = (NERR_BASE+182); // The message was sent but not received.
  367.   {$EXTERNALSYM NERR_BadReceive}
  368.   NERR_NameInUse          = (NERR_BASE+183); // The message alias is currently in use. Try again later.
  369.   {$EXTERNALSYM NERR_NameInUse}
  370.   NERR_MsgNotStarted      = (NERR_BASE+184); // The Messenger service has not been started.
  371.   {$EXTERNALSYM NERR_MsgNotStarted}
  372.   NERR_NotLocalName       = (NERR_BASE+185); // The name is not on the local computer.
  373.   {$EXTERNALSYM NERR_NotLocalName}
  374.   NERR_NoForwardName      = (NERR_BASE+186); // The forwarded message alias could not be found on the network.
  375.   {$EXTERNALSYM NERR_NoForwardName}
  376.   NERR_RemoteFull         = (NERR_BASE+187); // The message alias table on the remote station is full.
  377.   {$EXTERNALSYM NERR_RemoteFull}
  378.   NERR_NameNotForwarded   = (NERR_BASE+188); // Messages for this alias are not currently being forwarded.
  379.   {$EXTERNALSYM NERR_NameNotForwarded}
  380.   NERR_TruncatedBroadcast = (NERR_BASE+189); // The broadcast message was truncated.
  381.   {$EXTERNALSYM NERR_TruncatedBroadcast}
  382.   NERR_InvalidDevice      = (NERR_BASE+194); // This is an invalid device name.
  383.   {$EXTERNALSYM NERR_InvalidDevice}
  384.   NERR_WriteFault         = (NERR_BASE+195); // A write fault occurred.
  385.   {$EXTERNALSYM NERR_WriteFault}
  386. // UNUSED BASE+196
  387.   NERR_DuplicateName = (NERR_BASE+197); // A duplicate message alias exists on the network.
  388.   {$EXTERNALSYM NERR_DuplicateName}
  389.   NERR_DeleteLater   = (NERR_BASE+198); // @W This message alias will be deleted later.
  390.   {$EXTERNALSYM NERR_DeleteLater}
  391.   NERR_IncompleteDel = (NERR_BASE+199); // The message alias was not successfully deleted from all networks.
  392.   {$EXTERNALSYM NERR_IncompleteDel}
  393.   NERR_MultipleNets  = (NERR_BASE+200); // This operation is not supported on computers with multiple networks.
  394.   {$EXTERNALSYM NERR_MultipleNets}
  395. //
  396. //      Server API related
  397. //             Error codes BASE+210 to BASE+229
  398.   NERR_NetNameNotFound        = (NERR_BASE+210); // This shared resource does not exist.
  399.   {$EXTERNALSYM NERR_NetNameNotFound}
  400.   NERR_DeviceNotShared        = (NERR_BASE+211); // This device is not shared.
  401.   {$EXTERNALSYM NERR_DeviceNotShared}
  402.   NERR_ClientNameNotFound     = (NERR_BASE+212); // A session does not exist with that computer name.
  403.   {$EXTERNALSYM NERR_ClientNameNotFound}
  404.   NERR_FileIdNotFound         = (NERR_BASE+214); // There is not an open file with that identification number.
  405.   {$EXTERNALSYM NERR_FileIdNotFound}
  406.   NERR_ExecFailure            = (NERR_BASE+215); // A failure occurred when executing a remote administration command.
  407.   {$EXTERNALSYM NERR_ExecFailure}
  408.   NERR_TmpFile                = (NERR_BASE+216); // A failure occurred when opening a remote temporary file.
  409.   {$EXTERNALSYM NERR_TmpFile}
  410.   NERR_TooMuchData            = (NERR_BASE+217); // The data returned from a remote administration command has been truncated to 64K.
  411.   {$EXTERNALSYM NERR_TooMuchData}
  412.   NERR_DeviceShareConflict    = (NERR_BASE+218); // This device cannot be shared as both a spooled and a non-spooled resource.
  413.   {$EXTERNALSYM NERR_DeviceShareConflict}
  414.   NERR_BrowserTableIncomplete = (NERR_BASE+219); // The information in the list of servers may be incorrect.
  415.   {$EXTERNALSYM NERR_BrowserTableIncomplete}
  416.   NERR_NotLocalDomain         = (NERR_BASE+220); // The computer is not active in this domain.
  417.   {$EXTERNALSYM NERR_NotLocalDomain}
  418.   NERR_IsDfsShare             = (NERR_BASE+221); // The share must be removed from the Distributed File System before it can be deleted.
  419.   {$EXTERNALSYM NERR_IsDfsShare}
  420. //
  421. //      CharDev API related
  422. //              Error codes BASE+230 to BASE+249
  423. // UNUSED BASE+230
  424.   NERR_DevInvalidOpCode  = (NERR_BASE+231); // The operation is invalid for this device.
  425.   {$EXTERNALSYM NERR_DevInvalidOpCode}
  426.   NERR_DevNotFound       = (NERR_BASE+232); // This device cannot be shared.
  427.   {$EXTERNALSYM NERR_DevNotFound}
  428.   NERR_DevNotOpen        = (NERR_BASE+233); // This device was not open.
  429.   {$EXTERNALSYM NERR_DevNotOpen}
  430.   NERR_BadQueueDevString = (NERR_BASE+234); // This device name list is invalid.
  431.   {$EXTERNALSYM NERR_BadQueueDevString}
  432.   NERR_BadQueuePriority  = (NERR_BASE+235); // The queue priority is invalid.
  433.   {$EXTERNALSYM NERR_BadQueuePriority}
  434.   NERR_NoCommDevs        = (NERR_BASE+237); // There are no shared communication devices.
  435.   {$EXTERNALSYM NERR_NoCommDevs}
  436.   NERR_QueueNotFound     = (NERR_BASE+238); // The queue you specified does not exist.
  437.   {$EXTERNALSYM NERR_QueueNotFound}
  438.   NERR_BadDevString      = (NERR_BASE+240); // This list of devices is invalid.
  439.   {$EXTERNALSYM NERR_BadDevString}
  440.   NERR_BadDev            = (NERR_BASE+241); // The requested device is invalid.
  441.   {$EXTERNALSYM NERR_BadDev}
  442.   NERR_InUseBySpooler    = (NERR_BASE+242); // This device is already in use by the spooler.
  443.   {$EXTERNALSYM NERR_InUseBySpooler}
  444.   NERR_CommDevInUse      = (NERR_BASE+243); // This device is already in use as a communication device.
  445.   {$EXTERNALSYM NERR_CommDevInUse}
  446. //
  447. //      NetICanonicalize and NetIType and NetIMakeLMFileName
  448. //      NetIListCanon and NetINameCheck
  449. //              Error codes BASE+250 to BASE+269
  450.   NERR_InvalidComputer = (NERR_BASE+251); // This computer name is invalid.
  451.   {$EXTERNALSYM NERR_InvalidComputer}
  452. // UNUSED BASE+252
  453. // UNUSED BASE+253
  454.   NERR_MaxLenExceeded = (NERR_BASE+254); // The string and prefix specified are too long.
  455.   {$EXTERNALSYM NERR_MaxLenExceeded}
  456. // UNUSED BASE+255
  457.   NERR_BadComponent = (NERR_BASE+256); // This path component is invalid.
  458.   {$EXTERNALSYM NERR_BadComponent}
  459.   NERR_CantType     = (NERR_BASE+257); // Could not determine the type of input.
  460.   {$EXTERNALSYM NERR_CantType}
  461. // UNUSED BASE+258
  462. // UNUSED BASE+259
  463.   NERR_TooManyEntries = (NERR_BASE+262); // The buffer for types is not big enough.
  464.   {$EXTERNALSYM NERR_TooManyEntries}
  465. //
  466. //      NetProfile
  467. //              Error codes BASE+270 to BASE+276
  468.   NERR_ProfileFileTooBig = (NERR_BASE+270); // Profile files cannot exceed 64K.
  469.   {$EXTERNALSYM NERR_ProfileFileTooBig}
  470.   NERR_ProfileOffset     = (NERR_BASE+271); // The start offset is out of range.
  471.   {$EXTERNALSYM NERR_ProfileOffset}
  472.   NERR_ProfileCleanup    = (NERR_BASE+272); // The system cannot delete current connections to network resources.
  473.   {$EXTERNALSYM NERR_ProfileCleanup}
  474.   NERR_ProfileUnknownCmd = (NERR_BASE+273); // The system was unable to parse the command line in this file.
  475.   {$EXTERNALSYM NERR_ProfileUnknownCmd}
  476.   NERR_ProfileLoadErr    = (NERR_BASE+274); // An error occurred while loading the profile file.
  477.   {$EXTERNALSYM NERR_ProfileLoadErr}
  478.   NERR_ProfileSaveErr    = (NERR_BASE+275); // @W Errors occurred while saving the profile file.  The profile was partially saved.
  479.   {$EXTERNALSYM NERR_ProfileSaveErr}
  480. //
  481. //      NetAudit and NetErrorLog
  482. //              Error codes BASE+277 to BASE+279
  483.   NERR_LogOverflow    = (NERR_BASE+277); // Log file %1 is full.
  484.   {$EXTERNALSYM NERR_LogOverflow}
  485.   NERR_LogFileChanged = (NERR_BASE+278); // This log file has changed between reads.
  486.   {$EXTERNALSYM NERR_LogFileChanged}
  487.   NERR_LogFileCorrupt = (NERR_BASE+279); // Log file %1 is corrupt.
  488.   {$EXTERNALSYM NERR_LogFileCorrupt}
  489. //
  490. //      NetRemote
  491. //              Error codes BASE+280 to BASE+299
  492.   NERR_SourceIsDir      = (NERR_BASE+280); // The source path cannot be a directory.
  493.   {$EXTERNALSYM NERR_SourceIsDir}
  494.   NERR_BadSource        = (NERR_BASE+281); // The source path is illegal.
  495.   {$EXTERNALSYM NERR_BadSource}
  496.   NERR_BadDest          = (NERR_BASE+282); // The destination path is illegal.
  497.   {$EXTERNALSYM NERR_BadDest}
  498.   NERR_DifferentServers = (NERR_BASE+283); // The source and destination paths are on different servers.
  499.   {$EXTERNALSYM NERR_DifferentServers}
  500. // UNUSED BASE+284
  501.   NERR_RunSrvPaused = (NERR_BASE+285); // The Run server you requested is paused.
  502.   {$EXTERNALSYM NERR_RunSrvPaused}
  503. // UNUSED BASE+286
  504. // UNUSED BASE+287
  505. // UNUSED BASE+288
  506.   NERR_ErrCommRunSrv = (NERR_BASE+289); // An error occurred when communicating with a Run server.
  507.   {$EXTERNALSYM NERR_ErrCommRunSrv}
  508. // UNUSED BASE+290
  509.   NERR_ErrorExecingGhost = (NERR_BASE+291); // An error occurred when starting a background process.
  510.   {$EXTERNALSYM NERR_ErrorExecingGhost}
  511.   NERR_ShareNotFound     = (NERR_BASE+292); // The shared resource you are connected to could not be found.
  512.   {$EXTERNALSYM NERR_ShareNotFound}
  513. // UNUSED BASE+293
  514. // UNUSED BASE+294
  515. //
  516. //  NetWksta.sys (redir) returned error codes.
  517. //
  518. //          NERR_BASE + (300-329)
  519.   NERR_InvalidLana     = (NERR_BASE+300); // The LAN adapter number is invalid.
  520.   {$EXTERNALSYM NERR_InvalidLana}
  521.   NERR_OpenFiles       = (NERR_BASE+301); // There are open files on the connection.
  522.   {$EXTERNALSYM NERR_OpenFiles}
  523.   NERR_ActiveConns     = (NERR_BASE+302); // Active connections still exist.
  524.   {$EXTERNALSYM NERR_ActiveConns}
  525.   NERR_BadPasswordCore = (NERR_BASE+303); // This share name or password is invalid.
  526.   {$EXTERNALSYM NERR_BadPasswordCore}
  527.   NERR_DevInUse        = (NERR_BASE+304); // The device is being accessed by an active process.
  528.   {$EXTERNALSYM NERR_DevInUse}
  529.   NERR_LocalDrive      = (NERR_BASE+305); // The drive letter is in use locally.
  530.   {$EXTERNALSYM NERR_LocalDrive}
  531. //
  532. //  Alert error codes.
  533. //
  534. //          NERR_BASE + (330-339)
  535.   NERR_AlertExists       = (NERR_BASE+330); // The specified client is already registered for the specified event.
  536.   {$EXTERNALSYM NERR_AlertExists}
  537.   NERR_TooManyAlerts     = (NERR_BASE+331); // The alert table is full.
  538.   {$EXTERNALSYM NERR_TooManyAlerts}
  539.   NERR_NoSuchAlert       = (NERR_BASE+332); // An invalid or nonexistent alert name was raised.
  540.   {$EXTERNALSYM NERR_NoSuchAlert}
  541.   NERR_BadRecipient      = (NERR_BASE+333); // The alert recipient is invalid.
  542.   {$EXTERNALSYM NERR_BadRecipient}
  543.   NERR_AcctLimitExceeded = (NERR_BASE+334); // A user's session with this server has been deleted
  544.   {$EXTERNALSYM NERR_AcctLimitExceeded}
  545.                                                 // because the user's logon hours are no longer valid.
  546. //
  547. //  Additional Error and Audit log codes.
  548. //
  549. //          NERR_BASE +(340-343)
  550.   NERR_InvalidLogSeek = (NERR_BASE+340); // The log file does not contain the requested record number.
  551.   {$EXTERNALSYM NERR_InvalidLogSeek}
  552. // UNUSED BASE+341
  553. // UNUSED BASE+342
  554. // UNUSED BASE+343
  555. //
  556. //  Additional UAS and NETLOGON codes
  557. //
  558. //          NERR_BASE +(350-359)
  559.   NERR_BadUasConfig       = (NERR_BASE+350); // The user accounts database is not configured correctly.
  560.   {$EXTERNALSYM NERR_BadUasConfig}
  561.   NERR_InvalidUASOp       = (NERR_BASE+351); // This operation is not permitted when the Netlogon service is running.
  562.   {$EXTERNALSYM NERR_InvalidUASOp}
  563.   NERR_LastAdmin          = (NERR_BASE+352); // This operation is not allowed on the last administrative account.
  564.   {$EXTERNALSYM NERR_LastAdmin}
  565.   NERR_DCNotFound         = (NERR_BASE+353); // Could not find domain controller for this domain.
  566.   {$EXTERNALSYM NERR_DCNotFound}
  567.   NERR_LogonTrackingError = (NERR_BASE+354); // Could not set logon information for this user.
  568.   {$EXTERNALSYM NERR_LogonTrackingError}
  569.   NERR_NetlogonNotStarted = (NERR_BASE+355); // The Netlogon service has not been started.
  570.   {$EXTERNALSYM NERR_NetlogonNotStarted}
  571.   NERR_CanNotGrowUASFile  = (NERR_BASE+356); // Unable to add to the user accounts database.
  572.   {$EXTERNALSYM NERR_CanNotGrowUASFile}
  573.   NERR_TimeDiffAtDC       = (NERR_BASE+357); // This server's clock is not synchronized with the primary domain controller's clock.
  574.   {$EXTERNALSYM NERR_TimeDiffAtDC}
  575.   NERR_PasswordMismatch   = (NERR_BASE+358); // A password mismatch has been detected.
  576.   {$EXTERNALSYM NERR_PasswordMismatch}
  577. //
  578. //  Server Integration error codes.
  579. //
  580. //          NERR_BASE +(360-369)
  581.   NERR_NoSuchServer       = (NERR_BASE+360); // The server identification does not specify a valid server.
  582.   {$EXTERNALSYM NERR_NoSuchServer}
  583.   NERR_NoSuchSession      = (NERR_BASE+361); // The session identification does not specify a valid session.
  584.   {$EXTERNALSYM NERR_NoSuchSession}
  585.   NERR_NoSuchConnection   = (NERR_BASE+362); // The connection identification does not specify a valid connection.
  586.   {$EXTERNALSYM NERR_NoSuchConnection}
  587.   NERR_TooManyServers     = (NERR_BASE+363); // There is no space for another entry in the table of available servers.
  588.   {$EXTERNALSYM NERR_TooManyServers}
  589.   NERR_TooManySessions    = (NERR_BASE+364); // The server has reached the maximum number of sessions it supports.
  590.   {$EXTERNALSYM NERR_TooManySessions}
  591.   NERR_TooManyConnections = (NERR_BASE+365); // The server has reached the maximum number of connections it supports.
  592.   {$EXTERNALSYM NERR_TooManyConnections}
  593.   NERR_TooManyFiles       = (NERR_BASE+366); // The server cannot open more files because it has reached its maximum number.
  594.   {$EXTERNALSYM NERR_TooManyFiles}
  595.   NERR_NoAlternateServers = (NERR_BASE+367); // There are no alternate servers registered on this server.
  596.   {$EXTERNALSYM NERR_NoAlternateServers}
  597. // UNUSED BASE+368
  598. // UNUSED BASE+369
  599.   NERR_TryDownLevel = (NERR_BASE+370); // Try down-level (remote admin protocol) version of API instead.
  600.   {$EXTERNALSYM NERR_TryDownLevel}
  601. //
  602. //  UPS error codes.
  603. //
  604. //          NERR_BASE + (380-384)
  605.   NERR_UPSDriverNotStarted = (NERR_BASE+380); // The UPS driver could not be accessed by the UPS service.
  606.   {$EXTERNALSYM NERR_UPSDriverNotStarted}
  607.   NERR_UPSInvalidConfig    = (NERR_BASE+381); // The UPS service is not configured correctly.
  608.   {$EXTERNALSYM NERR_UPSInvalidConfig}
  609.   NERR_UPSInvalidCommPort  = (NERR_BASE+382); // The UPS service could not access the specified Comm Port.
  610.   {$EXTERNALSYM NERR_UPSInvalidCommPort}
  611.   NERR_UPSSignalAsserted   = (NERR_BASE+383); // The UPS indicated a line fail or low battery situation. Service not started.
  612.   {$EXTERNALSYM NERR_UPSSignalAsserted}
  613.   NERR_UPSShutdownFailed   = (NERR_BASE+384); // The UPS service failed to perform a system shut down.
  614.   {$EXTERNALSYM NERR_UPSShutdownFailed}
  615. //
  616. //  Remoteboot error codes.
  617. //
  618. //           NERR_BASE + (400-419)
  619. //           Error codes 400 - 405 are used by RPLBOOT.SYS.
  620. //           Error codes 403, 407 - 416 are used by RPLLOADR.COM,
  621. //           Error code 417 is the alerter message of REMOTEBOOT (RPLSERVR.EXE).
  622. //           Error code 418 is for when REMOTEBOOT can't start
  623. //           Error code 419 is for a disallowed 2nd rpl connection
  624. //
  625.   NERR_BadDosRetCode      = (NERR_BASE+400); // The program below returned an MS-DOS error code:
  626.   {$EXTERNALSYM NERR_BadDosRetCode}
  627.   NERR_ProgNeedsExtraMem  = (NERR_BASE+401); // The program below needs more memory:
  628.   {$EXTERNALSYM NERR_ProgNeedsExtraMem}
  629.   NERR_BadDosFunction     = (NERR_BASE+402); // The program below called an unsupported MS-DOS function:
  630.   {$EXTERNALSYM NERR_BadDosFunction}
  631.   NERR_RemoteBootFailed   = (NERR_BASE+403); // The workstation failed to boot.
  632.   {$EXTERNALSYM NERR_RemoteBootFailed}
  633.   NERR_BadFileCheckSum    = (NERR_BASE+404); // The file below is corrupt.
  634.   {$EXTERNALSYM NERR_BadFileCheckSum}
  635.   NERR_NoRplBootSystem    = (NERR_BASE+405); // No loader is specified in the boot-block definition file.
  636.   {$EXTERNALSYM NERR_NoRplBootSystem}
  637.   NERR_RplLoadrNetBiosErr = (NERR_BASE+406); // NetBIOS returned an error: The NCB and SMB are dumped above.
  638.   {$EXTERNALSYM NERR_RplLoadrNetBiosErr}
  639.   NERR_RplLoadrDiskErr    = (NERR_BASE+407); // A disk I/O error occurred.
  640.   {$EXTERNALSYM NERR_RplLoadrDiskErr}
  641.   NERR_ImageParamErr      = (NERR_BASE+408); // Image parameter substitution failed.
  642.   {$EXTERNALSYM NERR_ImageParamErr}
  643.   NERR_TooManyImageParams = (NERR_BASE+409); // Too many image parameters cross disk sector boundaries.
  644.   {$EXTERNALSYM NERR_TooManyImageParams}
  645.   NERR_NonDosFloppyUsed   = (NERR_BASE+410); // The image was not generated from an MS-DOS diskette formatted with /S.
  646.   {$EXTERNALSYM NERR_NonDosFloppyUsed}
  647.   NERR_RplBootRestart     = (NERR_BASE+411); // Remote boot will be restarted later.
  648.   {$EXTERNALSYM NERR_RplBootRestart}
  649.   NERR_RplSrvrCallFailed  = (NERR_BASE+412); // The call to the Remoteboot server failed.
  650.   {$EXTERNALSYM NERR_RplSrvrCallFailed}
  651.   NERR_CantConnectRplSrvr = (NERR_BASE+413); // Cannot connect to the Remoteboot server.
  652.   {$EXTERNALSYM NERR_CantConnectRplSrvr}
  653.   NERR_CantOpenImageFile  = (NERR_BASE+414); // Cannot open image file on the Remoteboot server.
  654.   {$EXTERNALSYM NERR_CantOpenImageFile}
  655.   NERR_CallingRplSrvr     = (NERR_BASE+415); // Connecting to the Remoteboot server...
  656.   {$EXTERNALSYM NERR_CallingRplSrvr}
  657.   NERR_StartingRplBoot    = (NERR_BASE+416); // Connecting to the Remoteboot server...
  658.   {$EXTERNALSYM NERR_StartingRplBoot}
  659.   NERR_RplBootServiceTerm = (NERR_BASE+417); // Remote boot service was stopped; check the error log for the cause of the problem.
  660.   {$EXTERNALSYM NERR_RplBootServiceTerm}
  661.   NERR_RplBootStartFailed = (NERR_BASE+418); // Remote boot startup failed; check the error log for the cause of the problem.
  662.   {$EXTERNALSYM NERR_RplBootStartFailed}
  663.   NERR_RPL_CONNECTED      = (NERR_BASE+419); // A second connection to a Remoteboot resource is not allowed.
  664.   {$EXTERNALSYM NERR_RPL_CONNECTED}
  665. //
  666. //  FTADMIN API error codes
  667. //
  668. //       NERR_BASE + (425-434)
  669. //
  670. //       (Currently not used in NT)
  671. //
  672. //
  673. //  Browser service API error codes
  674. //
  675. //       NERR_BASE + (450-475)
  676. //
  677.   NERR_BrowserConfiguredToNotRun = (NERR_BASE+450); // The browser service was configured with MaintainServerList=No.
  678.   {$EXTERNALSYM NERR_BrowserConfiguredToNotRun}
  679. //
  680. //  Additional Remoteboot error codes.
  681. //
  682. //          NERR_BASE + (510-550)
  683.   NERR_RplNoAdaptersStarted      = (NERR_BASE+510); // Service failed to start since none of the network adapters started with this service.
  684.   {$EXTERNALSYM NERR_RplNoAdaptersStarted}
  685.   NERR_RplBadRegistry            = (NERR_BASE+511); // Service failed to start due to bad startup information in the registry.
  686.   {$EXTERNALSYM NERR_RplBadRegistry}
  687.   NERR_RplBadDatabase            = (NERR_BASE+512); // Service failed to start because its database is absent or corrupt.
  688.   {$EXTERNALSYM NERR_RplBadDatabase}
  689.   NERR_RplRplfilesShare          = (NERR_BASE+513); // Service failed to start because RPLFILES share is absent.
  690.   {$EXTERNALSYM NERR_RplRplfilesShare}
  691.   NERR_RplNotRplServer           = (NERR_BASE+514); // Service failed to start because RPLUSER group is absent.
  692.   {$EXTERNALSYM NERR_RplNotRplServer}
  693.   NERR_RplCannotEnum             = (NERR_BASE+515); // Cannot enumerate service records.
  694.   {$EXTERNALSYM NERR_RplCannotEnum}
  695.   NERR_RplWkstaInfoCorrupted     = (NERR_BASE+516); // Workstation record information has been corrupted.
  696.   {$EXTERNALSYM NERR_RplWkstaInfoCorrupted}
  697.   NERR_RplWkstaNotFound          = (NERR_BASE+517); // Workstation record was not found.
  698.   {$EXTERNALSYM NERR_RplWkstaNotFound}
  699.   NERR_RplWkstaNameUnavailable   = (NERR_BASE+518); // Workstation name is in use by some other workstation.
  700.   {$EXTERNALSYM NERR_RplWkstaNameUnavailable}
  701.   NERR_RplProfileInfoCorrupted   = (NERR_BASE+519); // Profile record information has been corrupted.
  702.   {$EXTERNALSYM NERR_RplProfileInfoCorrupted}
  703.   NERR_RplProfileNotFound        = (NERR_BASE+520); // Profile record was not found.
  704.   {$EXTERNALSYM NERR_RplProfileNotFound}
  705.   NERR_RplProfileNameUnavailable = (NERR_BASE+521); // Profile name is in use by some other profile.
  706.   {$EXTERNALSYM NERR_RplProfileNameUnavailable}
  707.   NERR_RplProfileNotEmpty        = (NERR_BASE+522); // There are workstations using this profile.
  708.   {$EXTERNALSYM NERR_RplProfileNotEmpty}
  709.   NERR_RplConfigInfoCorrupted    = (NERR_BASE+523); // Configuration record information has been corrupted.
  710.   {$EXTERNALSYM NERR_RplConfigInfoCorrupted}
  711.   NERR_RplConfigNotFound         = (NERR_BASE+524); // Configuration record was not found.
  712.   {$EXTERNALSYM NERR_RplConfigNotFound}
  713.   NERR_RplAdapterInfoCorrupted   = (NERR_BASE+525); // Adapter id record information has been corrupted.
  714.   {$EXTERNALSYM NERR_RplAdapterInfoCorrupted}
  715.   NERR_RplInternal               = (NERR_BASE+526); // An internal service error has occurred.
  716.   {$EXTERNALSYM NERR_RplInternal}
  717.   NERR_RplVendorInfoCorrupted    = (NERR_BASE+527); // Vendor id record information has been corrupted.
  718.   {$EXTERNALSYM NERR_RplVendorInfoCorrupted}
  719.   NERR_RplBootInfoCorrupted      = (NERR_BASE+528); // Boot block record information has been corrupted.
  720.   {$EXTERNALSYM NERR_RplBootInfoCorrupted}
  721.   NERR_RplWkstaNeedsUserAcct     = (NERR_BASE+529); // The user account for this workstation record is missing.
  722.   {$EXTERNALSYM NERR_RplWkstaNeedsUserAcct}
  723.   NERR_RplNeedsRPLUSERAcct       = (NERR_BASE+530); // The RPLUSER local group could not be found.
  724.   {$EXTERNALSYM NERR_RplNeedsRPLUSERAcct}
  725.   NERR_RplBootNotFound           = (NERR_BASE+531); // Boot block record was not found.
  726.   {$EXTERNALSYM NERR_RplBootNotFound}
  727.   NERR_RplIncompatibleProfile    = (NERR_BASE+532); // Chosen profile is incompatible with this workstation.
  728.   {$EXTERNALSYM NERR_RplIncompatibleProfile}
  729.   NERR_RplAdapterNameUnavailable = (NERR_BASE+533); // Chosen network adapter id is in use by some other workstation.
  730.   {$EXTERNALSYM NERR_RplAdapterNameUnavailable}
  731.   NERR_RplConfigNotEmpty         = (NERR_BASE+534); // There are profiles using this configuration.
  732.   {$EXTERNALSYM NERR_RplConfigNotEmpty}
  733.   NERR_RplBootInUse              = (NERR_BASE+535); // There are workstations, profiles or configurations using this boot block.
  734.   {$EXTERNALSYM NERR_RplBootInUse}
  735.   NERR_RplBackupDatabase         = (NERR_BASE+536); // Service failed to backup Remoteboot database.
  736.   {$EXTERNALSYM NERR_RplBackupDatabase}
  737.   NERR_RplAdapterNotFound        = (NERR_BASE+537); // Adapter record was not found.
  738.   {$EXTERNALSYM NERR_RplAdapterNotFound}
  739.   NERR_RplVendorNotFound         = (NERR_BASE+538); // Vendor record was not found.
  740.   {$EXTERNALSYM NERR_RplVendorNotFound}
  741.   NERR_RplVendorNameUnavailable  = (NERR_BASE+539); // Vendor name is in use by some other vendor record.
  742.   {$EXTERNALSYM NERR_RplVendorNameUnavailable}
  743.   NERR_RplBootNameUnavailable    = (NERR_BASE+540); // (boot name, vendor id) is in use by some other boot block record.
  744.   {$EXTERNALSYM NERR_RplBootNameUnavailable}
  745.   NERR_RplConfigNameUnavailable  = (NERR_BASE+541); // Configuration name is in use by some other configuration.
  746.   {$EXTERNALSYM NERR_RplConfigNameUnavailable}
  747. //*INTERNAL_ONLY*
  748. //
  749. //  Dfs API error codes.
  750. //
  751. //          NERR_BASE + (560-590)
  752.   NERR_DfsInternalCorruption        = (NERR_BASE+560); // The internal database maintained by the DFS service is corrupt
  753.   {$EXTERNALSYM NERR_DfsInternalCorruption}
  754.   NERR_DfsVolumeDataCorrupt         = (NERR_BASE+561); // One of the records in the internal DFS database is corrupt
  755.   {$EXTERNALSYM NERR_DfsVolumeDataCorrupt}
  756.   NERR_DfsNoSuchVolume              = (NERR_BASE+562); // There is no DFS name whose entry path matches the input Entry Path
  757.   {$EXTERNALSYM NERR_DfsNoSuchVolume}
  758.   NERR_DfsVolumeAlreadyExists       = (NERR_BASE+563); // A root or link with the given name already exists
  759.   {$EXTERNALSYM NERR_DfsVolumeAlreadyExists}
  760.   NERR_DfsAlreadyShared             = (NERR_BASE+564); // The server share specified is already shared in the DFS
  761.   {$EXTERNALSYM NERR_DfsAlreadyShared}
  762.   NERR_DfsNoSuchShare               = (NERR_BASE+565); // The indicated server share does not support the indicated DFS namespace
  763.   {$EXTERNALSYM NERR_DfsNoSuchShare}
  764.   NERR_DfsNotALeafVolume            = (NERR_BASE+566); // The operation is not valid on this portion of the namespace
  765.   {$EXTERNALSYM NERR_DfsNotALeafVolume}
  766.   NERR_DfsLeafVolume                = (NERR_BASE+567); // The operation is not valid on this portion of the namespace
  767.   {$EXTERNALSYM NERR_DfsLeafVolume}
  768.   NERR_DfsVolumeHasMultipleServers  = (NERR_BASE+568); // The operation is ambiguous because the link has multiple servers
  769.   {$EXTERNALSYM NERR_DfsVolumeHasMultipleServers}
  770.   NERR_DfsCantCreateJunctionPoint   = (NERR_BASE+569); // Unable to create a link
  771.   {$EXTERNALSYM NERR_DfsCantCreateJunctionPoint}
  772.   NERR_DfsServerNotDfsAware         = (NERR_BASE+570); // The server is not DFS Aware
  773.   {$EXTERNALSYM NERR_DfsServerNotDfsAware}
  774.   NERR_DfsBadRenamePath             = (NERR_BASE+571); // The specified rename target path is invalid
  775.   {$EXTERNALSYM NERR_DfsBadRenamePath}
  776.   NERR_DfsVolumeIsOffline           = (NERR_BASE+572); // The specified DFS link is offline
  777.   {$EXTERNALSYM NERR_DfsVolumeIsOffline}
  778.   NERR_DfsNoSuchServer              = (NERR_BASE+573); // The specified server is not a server for this link
  779.   {$EXTERNALSYM NERR_DfsNoSuchServer}
  780.   NERR_DfsCyclicalName              = (NERR_BASE+574); // A cycle in the DFS name was detected
  781.   {$EXTERNALSYM NERR_DfsCyclicalName}
  782.   NERR_DfsNotSupportedInServerDfs   = (NERR_BASE+575); // The operation is not supported on a server-based DFS
  783.   {$EXTERNALSYM NERR_DfsNotSupportedInServerDfs}
  784.   NERR_DfsDuplicateService          = (NERR_BASE+576); // This link is already supported by the specified server-share
  785.   {$EXTERNALSYM NERR_DfsDuplicateService}
  786.   NERR_DfsCantRemoveLastServerShare = (NERR_BASE+577); // Can't remove the last server-share supporting this root or link
  787.   {$EXTERNALSYM NERR_DfsCantRemoveLastServerShare}
  788.   NERR_DfsVolumeIsInterDfs          = (NERR_BASE+578); // The operation is not supported for an Inter-DFS link
  789.   {$EXTERNALSYM NERR_DfsVolumeIsInterDfs}
  790.   NERR_DfsInconsistent              = (NERR_BASE+579); // The internal state of the DFS Service has become inconsistent
  791.   {$EXTERNALSYM NERR_DfsInconsistent}
  792.   NERR_DfsServerUpgraded            = (NERR_BASE+580); // The DFS Service has been installed on the specified server
  793.   {$EXTERNALSYM NERR_DfsServerUpgraded}
  794.   NERR_DfsDataIsIdentical           = (NERR_BASE+581); // The DFS data being reconciled is identical
  795.   {$EXTERNALSYM NERR_DfsDataIsIdentical}
  796.   NERR_DfsCantRemoveDfsRoot         = (NERR_BASE+582); // The DFS root cannot be deleted - Uninstall DFS if required
  797.   {$EXTERNALSYM NERR_DfsCantRemoveDfsRoot}
  798.   NERR_DfsChildOrParentInDfs        = (NERR_BASE+583); // A child or parent directory of the share is already in a DFS
  799.   {$EXTERNALSYM NERR_DfsChildOrParentInDfs}
  800.   NERR_DfsInternalError             = (NERR_BASE+590); // DFS internal error
  801.   {$EXTERNALSYM NERR_DfsInternalError}
  802. //
  803. //  Net setup error codes.
  804. //
  805. //          NERR_BASE + (591-600)
  806.   NERR_SetupAlreadyJoined           = (NERR_BASE+591); // This machine is already joined to a domain.
  807.   {$EXTERNALSYM NERR_SetupAlreadyJoined}
  808.   NERR_SetupNotJoined               = (NERR_BASE+592); // This machine is not currently joined to a domain.
  809.   {$EXTERNALSYM NERR_SetupNotJoined}
  810.   NERR_SetupDomainController        = (NERR_BASE+593); // This machine is a domain controller and cannot be unjoined from a domain.
  811.   {$EXTERNALSYM NERR_SetupDomainController}
  812.   NERR_DefaultJoinRequired          = (NERR_BASE+594); // The destination domain controller does not support creating machine accounts in OUs.
  813.   {$EXTERNALSYM NERR_DefaultJoinRequired}
  814.   NERR_InvalidWorkgroupName         = (NERR_BASE+595); // The specified workgroup name is invalid.
  815.   {$EXTERNALSYM NERR_InvalidWorkgroupName}
  816.   NERR_NameUsesIncompatibleCodePage = (NERR_BASE+596); // The specified computer name is incompatible with the default language used on the domain controller.
  817.   {$EXTERNALSYM NERR_NameUsesIncompatibleCodePage}
  818.   NERR_ComputerAccountNotFound      = (NERR_BASE+597); // The specified computer account could not be found.
  819.   {$EXTERNALSYM NERR_ComputerAccountNotFound}
  820.   NERR_PersonalSku                  = (NERR_BASE+598); // This version of Windows cannot be joined to a domain.
  821.   {$EXTERNALSYM NERR_PersonalSku}
  822. //
  823. //  Some Password and account error results
  824. //
  825. //          NERR_BASE + (601 - 608)
  826. //
  827.   NERR_PasswordMustChange           = (NERR_BASE + 601);   // Password must change at next logon
  828.   {$EXTERNALSYM NERR_PasswordMustChange}
  829.   NERR_AccountLockedOut             = (NERR_BASE + 602);   // Account is locked out
  830.   {$EXTERNALSYM NERR_AccountLockedOut}
  831.   NERR_PasswordTooLong              = (NERR_BASE + 603);   // Password is too long
  832.   {$EXTERNALSYM NERR_PasswordTooLong}
  833.   NERR_PasswordNotComplexEnough     = (NERR_BASE + 604);   // Password doesn't meet the complexity policy
  834.   {$EXTERNALSYM NERR_PasswordNotComplexEnough}
  835.   NERR_PasswordFilterError          = (NERR_BASE + 605);   // Password doesn't meet the requirements of the filter dll's
  836.   {$EXTERNALSYM NERR_PasswordFilterError}
  837. //**********WARNING ****************
  838. //The range 2750-2799 has been     *
  839. //allocated to the IBM LAN Server  *
  840. //*********************************
  841. //**********WARNING ****************
  842. //The range 2900-2999 has been     *
  843. //reserved for Microsoft OEMs      *
  844. //*********************************
  845. //*END_INTERNAL*
  846.   MAX_NERR = (NERR_BASE+899); // This is the last error in NERR range.
  847.   {$EXTERNALSYM MAX_NERR}
  848. //
  849. // end of list
  850. //
  851. //    WARNING:  Do not exceed MAX_NERR; values above this are used by
  852. //              other error code ranges (errlog.h, service.h, apperr.h).
  853. implementation
  854. end.