JwaBitsMsg.pas
资源名称:win32api.zip [点击查看]
上传用户:davidchvip
上传日期:2009-07-28
资源大小:1749k
文件大小:23k
源码类别:
Windows编程
开发平台:
Delphi
- {******************************************************************************}
- { }
- { Background file copier error codes API interface Unit for Object Pascal }
- { }
- { Portions created by Microsoft are Copyright (C) 1995-2001 Microsoft }
- { Corporation. All Rights Reserved. }
- { }
- { The original file is: bitsmsg.h, released June 2000. The original Pascal }
- { code is: BitsMsg.pas, released December 2000. The initial developer of the }
- { Pascal code is Marcel van Brakel (brakelm@chello.nl). }
- { }
- { Portions created by Marcel van Brakel are Copyright (C) 1999-2001 }
- { Marcel van Brakel. All Rights Reserved. }
- { }
- { Obtained through: Joint Endeavour of Delphi Innovators (Project JEDI) }
- { }
- { You may retrieve the latest version of this file at the Project JEDI home }
- { page, located at http://delphi-jedi.org or my personal homepage located at }
- { http://members.chello.nl/m.vanbrakel2 }
- { }
- { The contents of this file are used with permission, subject to the Mozilla }
- { Public License Version 1.1 (the "License"); you may not use this file except }
- { in compliance with the License. You may obtain a copy of the License at }
- { http://www.mozilla.org/MPL/MPL-1.1.html }
- { }
- { Software distributed under the License is distributed on an "AS IS" basis, }
- { WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for }
- { the specific language governing rights and limitations under the License. }
- { }
- { Alternatively, the contents of this file may be used under the terms of the }
- { GNU Lesser General Public License (the "LGPL License"), in which case the }
- { provisions of the LGPL License are applicable instead of those above. }
- { If you wish to allow use of your version of this file only under the terms }
- { of the LGPL License and not to allow others to use your version of this file }
- { under the MPL, indicate your decision by deleting the provisions above and }
- { replace them with the notice and other provisions required by the LGPL }
- { License. If you do not delete the provisions above, a recipient may use }
- { your version of this file under either the MPL or the LGPL License. }
- { }
- { For more information about the LGPL: http://www.gnu.org/copyleft/lesser.html }
- { }
- {******************************************************************************}
- unit JwaBitsMsg;
- {$WEAKPACKAGEUNIT}
- {$HPPEMIT ''}
- {$HPPEMIT '#include "BitsMsg.h"'}
- {$HPPEMIT ''}
- {$I WINDEFINES.INC}
- interface
- uses
- JwaWinType;
- //
- // Values are 32 bit values layed out as follows:
- //
- // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
- // 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
- // +---+-+-+-----------------------+-------------------------------+
- // |Sev|C|R| Facility | Code |
- // +---+-+-+-----------------------+-------------------------------+
- //
- // where
- //
- // Sev - is the severity code
- //
- // 00 - Success
- // 01 - Informational
- // 10 - Warning
- // 11 - Error
- //
- // C - is the Customer code flag
- //
- // R - is a reserved bit
- //
- // Facility - is the facility code
- //
- // Code - is the facility's status code
- //
- //
- // Define the facility codes
- //
- //
- // Define the severity codes
- //
- //
- // MessageId: BG_E_NOT_FOUND
- //
- // MessageText:
- //
- // The requested item was not found.
- //
- const
- BG_E_NOT_FOUND = DWORD($80200001);
- {$EXTERNALSYM BG_E_NOT_FOUND}
- //
- // MessageId: BG_E_INVALID_STATE
- //
- // MessageText:
- //
- // The requested action is not allowed in the current state.
- //
- BG_E_INVALID_STATE = DWORD($80200002);
- {$EXTERNALSYM BG_E_INVALID_STATE}
- //
- // MessageId: BG_E_EMPTY
- //
- // MessageText:
- //
- // The item is empty.
- //
- BG_E_EMPTY = DWORD($80200003);
- {$EXTERNALSYM BG_E_EMPTY}
- //
- // MessageId: BG_E_FILE_NOT_AVAILABLE
- //
- // MessageText:
- //
- // The file is not available.
- //
- BG_E_FILE_NOT_AVAILABLE = DWORD($80200004);
- {$EXTERNALSYM BG_E_FILE_NOT_AVAILABLE}
- //
- // MessageId: BG_E_PROTOCOL_NOT_AVAILABLE
- //
- // MessageText:
- //
- // The protocol is not available.
- //
- BG_E_PROTOCOL_NOT_AVAILABLE = DWORD($80200005);
- {$EXTERNALSYM BG_E_PROTOCOL_NOT_AVAILABLE}
- //
- // MessageId: BG_S_ERROR_CONTEXT_NONE
- //
- // MessageText:
- //
- // An error has not occured.
- //
- BG_S_ERROR_CONTEXT_NONE = $00200006;
- {$EXTERNALSYM BG_S_ERROR_CONTEXT_NONE}
- //
- // MessageId: BG_E_ERROR_CONTEXT_UNKNOWN
- //
- // MessageText:
- //
- // The error occured in an unknown location.
- //
- BG_E_ERROR_CONTEXT_UNKNOWN = DWORD($80200007);
- {$EXTERNALSYM BG_E_ERROR_CONTEXT_UNKNOWN}
- //
- // MessageId: BG_E_ERROR_CONTEXT_GENERAL_QUEUE_MANAGER
- //
- // MessageText:
- //
- // The error occured in the queue manager.
- //
- BG_E_ERROR_CONTEXT_GENERAL_QUEUE_MANAGER = DWORD($80200008);
- {$EXTERNALSYM BG_E_ERROR_CONTEXT_GENERAL_QUEUE_MANAGER}
- //
- // MessageId: BG_E_ERROR_CONTEXT_LOCAL_FILE
- //
- // MessageText:
- //
- // The error occured while processing the local file.
- //
- BG_E_ERROR_CONTEXT_LOCAL_FILE = DWORD($80200009);
- {$EXTERNALSYM BG_E_ERROR_CONTEXT_LOCAL_FILE}
- //
- // MessageId: BG_E_ERROR_CONTEXT_REMOTE_FILE
- //
- // MessageText:
- //
- // The error occured while processing the remote file.
- //
- BG_E_ERROR_CONTEXT_REMOTE_FILE = DWORD($8020000A);
- {$EXTERNALSYM BG_E_ERROR_CONTEXT_REMOTE_FILE}
- //
- // MessageId: BG_E_ERROR_CONTEXT_GENERAL_TRANSPORT
- //
- // MessageText:
- //
- // The error occured in the transport layer.
- //
- BG_E_ERROR_CONTEXT_GENERAL_TRANSPORT = DWORD($8020000B);
- {$EXTERNALSYM BG_E_ERROR_CONTEXT_GENERAL_TRANSPORT}
- //
- // MessageId: BG_E_ERROR_CONTEXT_QUEUE_MANAGER_NOTIFICATION
- //
- // MessageText:
- //
- // The error occured while processing the notification callback.
- //
- BG_E_ERROR_CONTEXT_QUEUE_MANAGER_NOTIFICATION = DWORD($8020000C);
- {$EXTERNALSYM BG_E_ERROR_CONTEXT_QUEUE_MANAGER_NOTIFICATION}
- //
- // MessageId: BG_E_DESTINATION_LOCKED
- //
- // MessageText:
- //
- // The destination volume is locked.
- //
- BG_E_DESTINATION_LOCKED = DWORD($8020000D);
- {$EXTERNALSYM BG_E_DESTINATION_LOCKED}
- //
- // MessageId: BG_E_VOLUME_CHANGED
- //
- // MessageText:
- //
- // The destination volume changed.
- //
- BG_E_VOLUME_CHANGED = DWORD($8020000E);
- {$EXTERNALSYM BG_E_VOLUME_CHANGED}
- //
- // MessageId: BG_E_ERROR_INFORMATION_UNAVAILABLE
- //
- // MessageText:
- //
- // Error information is unavailable.
- //
- BG_E_ERROR_INFORMATION_UNAVAILABLE = DWORD($8020000F);
- {$EXTERNALSYM BG_E_ERROR_INFORMATION_UNAVAILABLE}
- //
- // MessageId: BG_E_NETWORK_DISCONNECTED
- //
- // MessageText:
- //
- // No network connection is active at this time.
- //
- BG_E_NETWORK_DISCONNECTED = DWORD($80200010);
- {$EXTERNALSYM BG_E_NETWORK_DISCONNECTED}
- //
- // MessageId: BG_E_MISSING_FILE_SIZE
- //
- // MessageText:
- //
- // The server did not return the file size. The URL may point to dynamic content.
- //
- BG_E_MISSING_FILE_SIZE = DWORD($80200011);
- {$EXTERNALSYM BG_E_MISSING_FILE_SIZE}
- //
- // MessageId: BG_E_INSUFFICIENT_HTTP_SUPPORT
- //
- // MessageText:
- //
- // The server does not support HTTP 1.1.
- //
- BG_E_INSUFFICIENT_HTTP_SUPPORT = DWORD($80200012);
- {$EXTERNALSYM BG_E_INSUFFICIENT_HTTP_SUPPORT}
- //
- // MessageId: BG_E_INSUFFICIENT_RANGE_SUPPORT
- //
- // MessageText:
- //
- // The server does not support the Range header.
- //
- BG_E_INSUFFICIENT_RANGE_SUPPORT = DWORD($80200013);
- {$EXTERNALSYM BG_E_INSUFFICIENT_RANGE_SUPPORT}
- //
- // MessageId: BG_E_REMOTE_NOT_SUPPORTED
- //
- // MessageText:
- //
- // Remote use of BITS is not supported.
- //
- BG_E_REMOTE_NOT_SUPPORTED = DWORD($80200014);
- {$EXTERNALSYM BG_E_REMOTE_NOT_SUPPORTED}
- //
- // MessageId: BG_E_NEW_OWNER_DIFF_MAPPING
- //
- // MessageText:
- //
- // The drive mapping for the job are different for the current owner then the previous owner.
- //
- BG_E_NEW_OWNER_DIFF_MAPPING = DWORD($80200015);
- {$EXTERNALSYM BG_E_NEW_OWNER_DIFF_MAPPING}
- //
- // MessageId: BG_E_NEW_OWNER_NO_FILE_ACCESS
- //
- // MessageText:
- //
- // The new owner has insufficient access to the temp files.
- //
- BG_E_NEW_OWNER_NO_FILE_ACCESS = DWORD($80200016);
- {$EXTERNALSYM BG_E_NEW_OWNER_NO_FILE_ACCESS}
- //
- // MessageId: BG_S_PARTIAL_COMPLETE
- //
- // MessageText:
- //
- // Some files were incomplete and were deleted.
- //
- BG_S_PARTIAL_COMPLETE = $00200017;
- {$EXTERNALSYM BG_S_PARTIAL_COMPLETE}
- //
- // MessageId: BG_E_PROXY_LIST_TOO_LARGE
- //
- // MessageText:
- //
- // The proxy list may not be longer then 32767 characters.
- //
- BG_E_PROXY_LIST_TOO_LARGE = DWORD($80200018);
- {$EXTERNALSYM BG_E_PROXY_LIST_TOO_LARGE}
- //
- // MessageId: BG_E_PROXY_BYPASS_LIST_TOO_LARGE
- //
- // MessageText:
- //
- // The proxy bypass list may not be longer then 32767 characters.
- //
- BG_E_PROXY_BYPASS_LIST_TOO_LARGE = DWORD($80200019);
- {$EXTERNALSYM BG_E_PROXY_BYPASS_LIST_TOO_LARGE}
- //
- // MessageId: BG_S_UNABLE_TO_DELETE_FILES
- //
- // MessageText:
- //
- // Unable to delete all the temporary files.
- //
- BG_S_UNABLE_TO_DELETE_FILES = $0020001A;
- {$EXTERNALSYM BG_S_UNABLE_TO_DELETE_FILES}
- //
- // MessageId: BG_E_INVALID_SERVER_RESPONSE
- //
- // MessageText:
- //
- // The server's response was not valid.
- //
- BG_E_INVALID_SERVER_RESPONSE = DWORD($8020001B);
- {$EXTERNALSYM BG_E_INVALID_SERVER_RESPONSE}
- //
- // MessageId: BG_E_TOO_MANY_FILES
- //
- // MessageText:
- //
- // No more files can be added to this job.
- //
- BG_E_TOO_MANY_FILES = DWORD($8020001C);
- {$EXTERNALSYM BG_E_TOO_MANY_FILES}
- //
- // MessageId: BG_E_LOCAL_FILE_CHANGED
- //
- // MessageText:
- //
- // The local file was changed during the transfer.
- //
- BG_E_LOCAL_FILE_CHANGED = DWORD($8020001D);
- {$EXTERNALSYM BG_E_LOCAL_FILE_CHANGED}
- //
- // MessageId: BG_E_ERROR_CONTEXT_REMOTE_APPLICATION
- //
- // MessageText:
- //
- // The error was reported by the remote server application.
- //
- BG_E_ERROR_CONTEXT_REMOTE_APPLICATION = DWORD($8020001E);
- {$EXTERNALSYM BG_E_ERROR_CONTEXT_REMOTE_APPLICATION}
- //
- // MessageId: BG_E_SESSION_NOT_FOUND
- //
- // MessageText:
- //
- // The specified session could not be found on the server.
- //
- BG_E_SESSION_NOT_FOUND = DWORD($8020001F);
- {$EXTERNALSYM BG_E_SESSION_NOT_FOUND}
- //
- // MessageId: BG_E_TOO_LARGE
- //
- // MessageText:
- //
- // The upload file is too large for the server to accept.
- //
- BG_E_TOO_LARGE = DWORD($80200020);
- {$EXTERNALSYM BG_E_TOO_LARGE}
- //
- // MessageId: BG_E_STRING_TOO_LONG
- //
- // MessageText:
- //
- // The specified string is too long.
- //
- BG_E_STRING_TOO_LONG = DWORD($80200021);
- {$EXTERNALSYM BG_E_STRING_TOO_LONG}
- //
- // MessageId: BG_E_CLIENT_SERVER_PROTOCOL_MISMATCH
- //
- // MessageText:
- //
- // The server doesn't support any of the upload protocols that the client supports.
- //
- BG_E_CLIENT_SERVER_PROTOCOL_MISMATCH = DWORD($80200022);
- {$EXTERNALSYM BG_E_CLIENT_SERVER_PROTOCOL_MISMATCH}
- //
- // MessageId: BG_E_SERVER_EXECUTE_ENABLE
- //
- // MessageText:
- //
- // Scripting OR execute permissions are enabled on the IIS virtual directory associated with the job. To upload files to the virtural directory, disable the scripting and execute permissions on the virtual directory.
- //
- BG_E_SERVER_EXECUTE_ENABLE = DWORD($80200023);
- {$EXTERNALSYM BG_E_SERVER_EXECUTE_ENABLE}
- //
- // MessageId: BG_E_HTTP_ERROR_100
- //
- // MessageText:
- //
- // The request can be continued.
- //
- BG_E_HTTP_ERROR_100 = DWORD($80190064);
- {$EXTERNALSYM BG_E_HTTP_ERROR_100}
- //
- // MessageId: BG_E_HTTP_ERROR_101
- //
- // MessageText:
- //
- // The server has switched protocols in an upgrade header.
- //
- BG_E_HTTP_ERROR_101 = DWORD($80190065);
- {$EXTERNALSYM BG_E_HTTP_ERROR_101}
- //
- // MessageId: BG_E_HTTP_ERROR_200
- //
- // MessageText:
- //
- // The request completed successfully.
- //
- BG_E_HTTP_ERROR_200 = DWORD($801900C8);
- {$EXTERNALSYM BG_E_HTTP_ERROR_200}
- //
- // MessageId: BG_E_HTTP_ERROR_201
- //
- // MessageText:
- //
- // The request has been fulfilled and resulted in the creation of a new resource.
- //
- BG_E_HTTP_ERROR_201 = DWORD($801900C9);
- {$EXTERNALSYM BG_E_HTTP_ERROR_201}
- //
- // MessageId: BG_E_HTTP_ERROR_202
- //
- // MessageText:
- //
- // The request has been accepted for processing, but the processing has not been completed.
- //
- BG_E_HTTP_ERROR_202 = DWORD($801900CA);
- {$EXTERNALSYM BG_E_HTTP_ERROR_202}
- //
- // MessageId: BG_E_HTTP_ERROR_203
- //
- // MessageText:
- //
- // The returned meta information in the entity-header is not the definitive set available from the origin server.
- //
- BG_E_HTTP_ERROR_203 = DWORD($801900CB);
- {$EXTERNALSYM BG_E_HTTP_ERROR_203}
- //
- // MessageId: BG_E_HTTP_ERROR_204
- //
- // MessageText:
- //
- // The server has fulfilled the request, but there is no new information to send back.
- //
- BG_E_HTTP_ERROR_204 = DWORD($801900CC);
- {$EXTERNALSYM BG_E_HTTP_ERROR_204}
- //
- // MessageId: BG_E_HTTP_ERROR_205
- //
- // MessageText:
- //
- // The request has been completed, and the client program should reset the document view that caused the request to be sent to allow the user to easily initiate another input action.
- //
- BG_E_HTTP_ERROR_205 = DWORD($801900CD);
- {$EXTERNALSYM BG_E_HTTP_ERROR_205}
- //
- // MessageId: BG_E_HTTP_ERROR_206
- //
- // MessageText:
- //
- // The server has fulfilled the partial GET request for the resource.
- //
- BG_E_HTTP_ERROR_206 = DWORD($801900CE);
- {$EXTERNALSYM BG_E_HTTP_ERROR_206}
- //
- // MessageId: BG_E_HTTP_ERROR_300
- //
- // MessageText:
- //
- // The server couldn't decide what to return.
- //
- BG_E_HTTP_ERROR_300 = DWORD($8019012C);
- {$EXTERNALSYM BG_E_HTTP_ERROR_300}
- //
- // MessageId: BG_E_HTTP_ERROR_301
- //
- // MessageText:
- //
- // The requested resource has been assigned to a new permanent URI (Uniform Resource Identifier), and any future references to this resource should be done using one of the returned URIs.
- //
- BG_E_HTTP_ERROR_301 = DWORD($8019012D);
- {$EXTERNALSYM BG_E_HTTP_ERROR_301}
- //
- // MessageId: BG_E_HTTP_ERROR_302
- //
- // MessageText:
- //
- // The requested resource resides temporarily under a different URI (Uniform Resource Identifier).
- //
- BG_E_HTTP_ERROR_302 = DWORD($8019012E);
- {$EXTERNALSYM BG_E_HTTP_ERROR_302}
- //
- // MessageId: BG_E_HTTP_ERROR_303
- //
- // MessageText:
- //
- // The response to the request can be found under a different URI (Uniform Resource Identifier) and should be retrieved using a GET method on that resource.
- //
- BG_E_HTTP_ERROR_303 = DWORD($8019012F);
- {$EXTERNALSYM BG_E_HTTP_ERROR_303}
- //
- // MessageId: BG_E_HTTP_ERROR_304
- //
- // MessageText:
- //
- // The requested resource has not been modified.
- //
- BG_E_HTTP_ERROR_304 = DWORD($80190130);
- {$EXTERNALSYM BG_E_HTTP_ERROR_304}
- //
- // MessageId: BG_E_HTTP_ERROR_305
- //
- // MessageText:
- //
- // The requested resource must be accessed through the proxy given by the location field.
- //
- BG_E_HTTP_ERROR_305 = DWORD($80190131);
- {$EXTERNALSYM BG_E_HTTP_ERROR_305}
- //
- // MessageId: BG_E_HTTP_ERROR_307
- //
- // MessageText:
- //
- // The redirected request keeps the same verb. HTTP/1.1 behavior.
- //
- BG_E_HTTP_ERROR_307 = DWORD($80190133);
- {$EXTERNALSYM BG_E_HTTP_ERROR_307}
- //
- // MessageId: BG_E_HTTP_ERROR_400
- //
- // MessageText:
- //
- // The request could not be processed by the server due to invalid syntax.
- //
- BG_E_HTTP_ERROR_400 = DWORD($80190190);
- {$EXTERNALSYM BG_E_HTTP_ERROR_400}
- //
- // MessageId: BG_E_HTTP_ERROR_401
- //
- // MessageText:
- //
- // The requested resource requires user authentication.
- //
- BG_E_HTTP_ERROR_401 = DWORD($80190191);
- {$EXTERNALSYM BG_E_HTTP_ERROR_401}
- //
- // MessageId: BG_E_HTTP_ERROR_402
- //
- // MessageText:
- //
- // Not currently implemented in the HTTP protocol.
- //
- BG_E_HTTP_ERROR_402 = DWORD($80190192);
- {$EXTERNALSYM BG_E_HTTP_ERROR_402}
- //
- // MessageId: BG_E_HTTP_ERROR_403
- //
- // MessageText:
- //
- // The server understood the request, but is refusing to fulfill it.
- //
- BG_E_HTTP_ERROR_403 = DWORD($80190193);
- {$EXTERNALSYM BG_E_HTTP_ERROR_403}
- //
- // MessageId: BG_E_HTTP_ERROR_404
- //
- // MessageText:
- //
- // The server has not found anything matching the requested URI (Uniform Resource Identifier).
- //
- BG_E_HTTP_ERROR_404 = DWORD($80190194);
- {$EXTERNALSYM BG_E_HTTP_ERROR_404}
- //
- // MessageId: BG_E_HTTP_ERROR_405
- //
- // MessageText:
- //
- // The method used is not allowed.
- //
- BG_E_HTTP_ERROR_405 = DWORD($80190195);
- {$EXTERNALSYM BG_E_HTTP_ERROR_405}
- //
- // MessageId: BG_E_HTTP_ERROR_406
- //
- // MessageText:
- //
- // No responses acceptable to the client were found.
- //
- BG_E_HTTP_ERROR_406 = DWORD($80190196);
- {$EXTERNALSYM BG_E_HTTP_ERROR_406}
- //
- // MessageId: BG_E_HTTP_ERROR_407
- //
- // MessageText:
- //
- // Proxy authentication required.
- //
- BG_E_HTTP_ERROR_407 = DWORD($80190197);
- {$EXTERNALSYM BG_E_HTTP_ERROR_407}
- //
- // MessageId: BG_E_HTTP_ERROR_408
- //
- // MessageText:
- //
- // The server timed out waiting for the request.
- //
- BG_E_HTTP_ERROR_408 = DWORD($80190198);
- {$EXTERNALSYM BG_E_HTTP_ERROR_408}
- //
- // MessageId: BG_E_HTTP_ERROR_409
- //
- // MessageText:
- //
- // The request could not be completed due to a conflict with the current state of the resource. The user should resubmit with more information.
- //
- BG_E_HTTP_ERROR_409 = DWORD($80190199);
- {$EXTERNALSYM BG_E_HTTP_ERROR_409}
- //
- // MessageId: BG_E_HTTP_ERROR_410
- //
- // MessageText:
- //
- // The requested resource is no longer available at the server, and no forwarding address is known.
- //
- BG_E_HTTP_ERROR_410 = DWORD($8019019A);
- {$EXTERNALSYM BG_E_HTTP_ERROR_410}
- //
- // MessageId: BG_E_HTTP_ERROR_411
- //
- // MessageText:
- //
- // The server refuses to accept the request without a defined content length.
- //
- BG_E_HTTP_ERROR_411 = DWORD($8019019B);
- {$EXTERNALSYM BG_E_HTTP_ERROR_411}
- //
- // MessageId: BG_E_HTTP_ERROR_412
- //
- // MessageText:
- //
- // The precondition given in one or more of the request header fields evaluated to false when it was tested on the server.
- //
- BG_E_HTTP_ERROR_412 = DWORD($8019019C);
- {$EXTERNALSYM BG_E_HTTP_ERROR_412}
- //
- // MessageId: BG_E_HTTP_ERROR_413
- //
- // MessageText:
- //
- // The server is refusing to process a request because the request entity is larger than the server is willing or able to process.
- //
- BG_E_HTTP_ERROR_413 = DWORD($8019019D);
- {$EXTERNALSYM BG_E_HTTP_ERROR_413}
- //
- // MessageId: BG_E_HTTP_ERROR_414
- //
- // MessageText:
- //
- // The server is refusing to service the request because the request URI (Uniform Resource Identifier) is longer than the server is willing to interpret.
- //
- BG_E_HTTP_ERROR_414 = DWORD($8019019E);
- {$EXTERNALSYM BG_E_HTTP_ERROR_414}
- //
- // MessageId: BG_E_HTTP_ERROR_415
- //
- // MessageText:
- //
- // The server is refusing to service the request because the entity of the request is in a format not supported by the requested resource for the requested method.
- //
- BG_E_HTTP_ERROR_415 = DWORD($8019019F);
- {$EXTERNALSYM BG_E_HTTP_ERROR_415}
- //
- // MessageId: BG_E_HTTP_ERROR_416
- //
- // MessageText:
- //
- // The server could not satisfy the range request.
- //
- BG_E_HTTP_ERROR_416 = DWORD($801901A0);
- {$EXTERNALSYM BG_E_HTTP_ERROR_416}
- //
- // MessageId: BG_E_HTTP_ERROR_417
- //
- // MessageText:
- //
- // The expectation given in an Expect request-header field could not be met by this server.
- //
- BG_E_HTTP_ERROR_417 = DWORD($801901A1);
- {$EXTERNALSYM BG_E_HTTP_ERROR_417}
- //
- // MessageId: BG_E_HTTP_ERROR_449
- //
- // MessageText:
- //
- // The request should be retried after doing the appropriate action.
- //
- BG_E_HTTP_ERROR_449 = DWORD($801901C1);
- {$EXTERNALSYM BG_E_HTTP_ERROR_449}
- //
- // MessageId: BG_E_HTTP_ERROR_500
- //
- // MessageText:
- //
- // The server encountered an unexpected condition that prevented it from fulfilling the request.
- //
- BG_E_HTTP_ERROR_500 = DWORD($801901F4);
- {$EXTERNALSYM BG_E_HTTP_ERROR_500}
- //
- // MessageId: BG_E_HTTP_ERROR_501
- //
- // MessageText:
- //
- // The server does not support the functionality required to fulfill the request.
- //
- BG_E_HTTP_ERROR_501 = DWORD($801901F5);
- {$EXTERNALSYM BG_E_HTTP_ERROR_501}
- //
- // MessageId: BG_E_HTTP_ERROR_502
- //
- // MessageText:
- //
- // The server, while acting as a gateway or proxy, received an invalid response from the upstream server it accessed in attempting to fulfill the request.
- //
- BG_E_HTTP_ERROR_502 = DWORD($801901F6);
- {$EXTERNALSYM BG_E_HTTP_ERROR_502}
- //
- // MessageId: BG_E_HTTP_ERROR_503
- //
- // MessageText:
- //
- // The service is temporarily overloaded.
- //
- BG_E_HTTP_ERROR_503 = DWORD($801901F7);
- {$EXTERNALSYM BG_E_HTTP_ERROR_503}
- //
- // MessageId: BG_E_HTTP_ERROR_504
- //
- // MessageText:
- //
- // The request was timed out waiting for a gateway.
- //
- BG_E_HTTP_ERROR_504 = DWORD($801901F8);
- {$EXTERNALSYM BG_E_HTTP_ERROR_504}
- //
- // MessageId: BG_E_HTTP_ERROR_505
- //
- // MessageText:
- //
- // The server does not support, or refuses to support, the HTTP protocol version that was used in the request message.
- //
- BG_E_HTTP_ERROR_505 = DWORD($801901F9);
- {$EXTERNALSYM BG_E_HTTP_ERROR_505}
- //
- // MessageId: MC_JOB_CANCELLED
- //
- // MessageText:
- //
- // %4 canceled job %1 on behalf of %3. The job's name was "%2".
- //
- MC_JOB_CANCELLED = DWORD($80194000);
- {$EXTERNALSYM MC_JOB_CANCELLED}
- //
- // MessageId: MC_FILE_DELETION_FAILED
- //
- // MessageText:
- //
- // BITS completed job %1 with name "%2" but was not able to remove the following temporary files.
- // If you can delete them, then you will regain some disk space.
- //
- // %3
- //
- MC_FILE_DELETION_FAILED = DWORD($80194001);
- {$EXTERNALSYM MC_FILE_DELETION_FAILED}
- //
- // MessageId: MC_FILE_DELETION_FAILED_MORE
- //
- // MessageText:
- //
- // BITS completed job %1 with name "%2" but was not able to remove some temporary files.
- // If you can delete them, then you will regain some disk space.
- //
- // %3
- // Due to space limitations, not all files are listed here. Check for additional files of the form BITxxx.TMP in the same directory.
- //
- MC_FILE_DELETION_FAILED_MORE = DWORD($80194002);
- {$EXTERNALSYM MC_FILE_DELETION_FAILED_MORE}
- implementation
- end.