~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/toolkit/mozapps/installer/windows/wizard/setup/xperr.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 
2
/*
 
3
 * The contents of this file are subject to the Netscape Public
 
4
 * License Version 1.1 (the "License"); you may not use this file
 
5
 * except in compliance with the License. You may obtain a copy of
 
6
 * the License at http://www.mozilla.org/NPL/
 
7
 *
 
8
 * Software distributed under the License is distributed on an "AS
 
9
 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
10
 * implied. See the License for the specific language governing
 
11
 * rights and limitations under the License.
 
12
 *
 
13
 * The Original Code is Mozilla Communicator client code,
 
14
 * released March 31, 1998.
 
15
 *
 
16
 * The Initial Developer of the Original Code is Netscape Communications
 
17
 * Corporation.  Portions created by Netscape are
 
18
 * Copyright (C) 1998 Netscape Communications Corporation. All
 
19
 * Rights Reserved.
 
20
 *
 
21
 * Contributor(s): 
 
22
 *     Sean Su <ssu@netscape.com>
 
23
 */
 
24
 
 
25
#ifndef _XPERR_H_
 
26
#define _XPERR_H_
 
27
 
 
28
char *XpErrorList[] = {"0"   ,  "OK",
 
29
                       "-200",  "BAD_PACKAGE_NAME",
 
30
                       "-201",  "UNEXPECTED_ERROR",
 
31
                       "-202",  "ACCESS_DENIED",
 
32
                       "-203",  "EXECUTION_ERROR",
 
33
                       "-204",  "NO_INSTALL_SCRIPT",
 
34
                       "-205",  "NO_CERTIFICATE",
 
35
                       "-206",  "NO_MATCHING_CERTIFICATE",
 
36
                       "-207",  "CANT_READ_ARCHIVE",
 
37
                       "-208",  "INVALID_ARGUMENTS",
 
38
                       "-209",  "ILLEGAL_RELATIVE_PATH",
 
39
                       "-210",  "USER_CANCELLED",
 
40
                       "-211",  "INSTALL_NOT_STARTED",
 
41
                       "-212",  "SILENT_MODE_DENIED",
 
42
                       "-213",  "NO_SUCH_COMPONENT",
 
43
                       "-214",  "DOES_NOT_EXIST",
 
44
                       "-215",  "READ_ONLY",
 
45
                       "-216",  "IS_DIRECTORY",
 
46
                       "-217",  "NETWORK_FILE_IS_IN_USE",
 
47
                       "-218",  "APPLE_SINGLE_ERR",
 
48
                       "-219",  "INVALID_PATH_ERR",
 
49
                       "-220",  "PATCH_BAD_DIFF",
 
50
                       "-221",  "PATCH_BAD_CHECKSUM_TARGET",
 
51
                       "-222",  "PATCH_BAD_CHECKSUM_RESULT",
 
52
                       "-223",  "UNINSTALL_FAILED",
 
53
                       "-224",  "PACKAGE_FOLDER_NOT_SET",
 
54
                       "-225",  "EXTRACTION_FAILED",
 
55
                       "-226",  "FILENAME_ALREADY_USED",
 
56
                       "-227",  "ABORT_INSTALL",
 
57
                       "-228",  "DOWNLOAD_ERROR",
 
58
                       "-229",  "SCRIPT_ERROR",
 
59
                       "-230",  "ALREADY_EXISTS",
 
60
                       "-231",  "IS_FILE",
 
61
                       "-232",  "SOURCE_DOES_NOT_EXIST",
 
62
                       "-233",  "SOURCE_IS_DIRECTORY",
 
63
                       "-234",  "SOURCE_IS_FILE",
 
64
                       "-235",  "INSUFFICIENT_DISK_SPACE",
 
65
                       "-236",  "FILENAME_TOO_LONG",
 
66
                       "-237",  "UNABLE_TO_LOCATE_LIB_FUNCTION",
 
67
                       "-238",  "UNABLE_TO_LOAD_LIBRARY",
 
68
                       "-239",  "CHROME_REGISTRY_ERROR",
 
69
                       "-240",  "MALFORMED_INSTALL",
 
70
                       "-241",  "KEY_ACCESS_DENIED",
 
71
                       "-242",  "KEY_DOES_NOT_EXIST",
 
72
                       "-243",  "VALUE_DOES_NOT_EXIST",
 
73
                       "-299",  "OUT_OF_MEMORY",
 
74
                       "-322",  "INIT_STUB_ERROR",
 
75
                       "-5550", "GESTALT_UNKNOWN_ERR",
 
76
                       "-5551", "GESTALT_INVALID_ARGUMENT",
 
77
                       ""};
 
78
 
 
79
#endif /* _XPERR_H_ */
 
80