~ubuntu-branches/ubuntu/lucid/fpc/lucid-proposed

« back to all changes in this revision

Viewing changes to fpcsrc/packages/winunits-jedi/src/jwawpwizmsg.pas

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-10-09 23:29:00 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20081009232900-553f61m37jkp6upv
Tags: 2.2.2-4
[ Torsten Werner ]
* Update ABI version in fpc-depends automatically.
* Remove empty directories from binary package fpc-source.

[ Mazen Neifer ]
* Removed leading path when calling update-alternatives to remove a Linitian
  error.
* Fixed clean target.
* Improved description of packages. (Closes: #498882)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{******************************************************************************}
 
2
{                                                                              }
 
3
{ Web Publishing Wizzard Error Codes 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: wpwizmsg.h, released June 2000. The original Pascal    }
 
9
{ code is: WPWizMsg.pas, released December 2000. The initial developer of the  }
 
10
{ Pascal code is Marcel van Brakel (brakelm att chello dott 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         }
 
18
{ APILIB home page, located at http://jedi-apilib.sourceforge.net              }
 
19
{                                                                              }
 
20
{ The contents of this file are used with permission, subject to the Mozilla   }
 
21
{ Public License Version 1.1 (the "License"); you may not use this file except }
 
22
{ in compliance with the License. You may obtain a copy of the License at      }
 
23
{ http://www.mozilla.org/MPL/MPL-1.1.html                                      }
 
24
{                                                                              }
 
25
{ Software distributed under the License is distributed on an "AS IS" basis,   }
 
26
{ WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for }
 
27
{ the specific language governing rights and limitations under the License.    }
 
28
{                                                                              }
 
29
{ Alternatively, the contents of this file may be used under the terms of the  }
 
30
{ GNU Lesser General Public License (the  "LGPL License"), in which case the   }
 
31
{ provisions of the LGPL License are applicable instead of those above.        }
 
32
{ If you wish to allow use of your version of this file only under the terms   }
 
33
{ of the LGPL License and not to allow others to use your version of this file }
 
34
{ under the MPL, indicate your decision by deleting  the provisions above and  }
 
35
{ replace  them with the notice and other provisions required by the LGPL      }
 
36
{ License.  If you do not delete the provisions above, a recipient may use     }
 
37
{ your version of this file under either the MPL or the LGPL License.          }
 
38
{                                                                              }
 
39
{ For more information about the LGPL: http://www.gnu.org/copyleft/lesser.html }
 
40
{                                                                              }
 
41
{******************************************************************************}
 
42
 
 
43
// $Id: JwaWPWizMsg.pas,v 1.7 2007/09/05 11:58:53 dezipaitor Exp $
 
44
{$IFNDEF JWA_OMIT_SECTIONS}
 
45
unit JwaWPWizMsg;
 
46
 
 
47
{$WEAKPACKAGEUNIT}
 
48
{$ENDIF JWA_OMIT_SECTIONS}
 
49
 
 
50
{$HPPEMIT ''}
 
51
{$HPPEMIT '#include "wpwizmsg.h"'}
 
52
{$HPPEMIT ''}
 
53
 
 
54
 
 
55
{$IFNDEF JWA_OMIT_SECTIONS}
 
56
{$I jediapilib.inc}
 
57
 
 
58
interface
 
59
 
 
60
uses
 
61
  JwaWinType;
 
62
{$ENDIF JWA_OMIT_SECTIONS}
 
63
{$IFNDEF JWA_IMPLEMENTATIONSECTION}
 
64
 
 
65
//
 
66
//  Values are 32 bit values layed out as follows:
 
67
//
 
68
//   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
 
69
//   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
 
70
//  +---+-+-+-----------------------+-------------------------------+
 
71
//  |Sev|C|R|     Facility          |               Code            |
 
72
//  +---+-+-+-----------------------+-------------------------------+
 
73
//
 
74
//  where
 
75
//
 
76
//      Sev - is the severity code
 
77
//
 
78
//          00 - Success
 
79
//          01 - Informational
 
80
//          10 - Warning
 
81
//          11 - Error
 
82
//
 
83
//      C - is the Customer code flag
 
84
//
 
85
//      R - is a reserved bit
 
86
//
 
87
//      Facility - is the facility code
 
88
//
 
89
//      Code - is the facility's status code
 
90
//
 
91
//
 
92
// Define the facility codes
 
93
//
 
94
 
 
95
//
 
96
// Define the severity codes
 
97
//
 
98
 
 
99
//
 
100
// MessageId: WPWIZ_ERROR_FIRST
 
101
//
 
102
// MessageText:
 
103
//
 
104
//  Web Publishing Wizard first error message.
 
105
//
 
106
 
 
107
const
 
108
  WPWIZ_ERROR_FIRST = DWORD($40042000);
 
109
  {$EXTERNALSYM WPWIZ_ERROR_FIRST}
 
110
 
 
111
//
 
112
// MessageId: WPWIZ_ERROR_UNKNOWN
 
113
//
 
114
// MessageText:
 
115
//
 
116
//  An unknown error occurred in the Web Publishing Wizard.
 
117
//
 
118
 
 
119
  WPWIZ_ERROR_UNKNOWN = DWORD($C0042001);
 
120
  {$EXTERNALSYM WPWIZ_ERROR_UNKNOWN}
 
121
 
 
122
//
 
123
// MessageId: WPWIZ_ERROR_PROV_QI
 
124
//
 
125
// MessageText:
 
126
//
 
127
//  The Web Publishing Wizard was unable to determine the version number of your service provider.
 
128
//
 
129
 
 
130
  WPWIZ_ERROR_PROV_QI = DWORD($C0042002);
 
131
  {$EXTERNALSYM WPWIZ_ERROR_PROV_QI}
 
132
 
 
133
//
 
134
// MessageId: WPWIZ_ERROR_INIT_FAILED
 
135
//
 
136
// MessageText:
 
137
//
 
138
//  An error occurred while attempting to start the Web Publishing Wizard.
 
139
//
 
140
 
 
141
  WPWIZ_ERROR_INIT_FAILED = DWORD($C0042003);
 
142
  {$EXTERNALSYM WPWIZ_ERROR_INIT_FAILED}
 
143
 
 
144
//
 
145
// MessageId: WPWIZ_ERROR_COCREATE_WEBPOST
 
146
//
 
147
// MessageText:
 
148
//
 
149
//  The Web Publishing Wizard is not installed correctly. Please uninstall and then reinstall the wizard.
 
150
//
 
151
 
 
152
  WPWIZ_ERROR_COCREATE_WEBPOST = DWORD($C0042004);
 
153
  {$EXTERNALSYM WPWIZ_ERROR_COCREATE_WEBPOST}
 
154
 
 
155
//
 
156
// MessageId: WPWIZ_ERROR_NO_PROVIDERS
 
157
//
 
158
// MessageText:
 
159
//
 
160
//  The Web Publishing Wizard could not run because there are no service providers installed.
 
161
//
 
162
 
 
163
  WPWIZ_ERROR_NO_PROVIDERS = DWORD($C0042005);
 
164
  {$EXTERNALSYM WPWIZ_ERROR_NO_PROVIDERS}
 
165
 
 
166
//
 
167
// MessageId: WPWIZ_ERROR_STATE_PTR
 
168
//
 
169
// MessageText:
 
170
//
 
171
//  An internal error (0x2006) occurred in the Web Publishing Wizard.
 
172
//
 
173
 
 
174
  WPWIZ_ERROR_STATE_PTR = DWORD($C0042006);
 
175
  {$EXTERNALSYM WPWIZ_ERROR_STATE_PTR}
 
176
 
 
177
//
 
178
// MessageId: WPWIZ_ERROR_WEBPOST_PTR
 
179
//
 
180
// MessageText:
 
181
//
 
182
//  An internal error (0x2007) occurred in the Web Publishing Wizard.
 
183
//
 
184
 
 
185
  WPWIZ_ERROR_WEBPOST_PTR = DWORD($C0042007);
 
186
  {$EXTERNALSYM WPWIZ_ERROR_WEBPOST_PTR}
 
187
 
 
188
//
 
189
// MessageId: WPWIZ_ERROR_FILE_NOT_FOUND
 
190
//
 
191
// MessageText:
 
192
//
 
193
//  The file(s) you selected to publish could not be found.
 
194
//
 
195
 
 
196
  WPWIZ_ERROR_FILE_NOT_FOUND = DWORD($C0042008);
 
197
  {$EXTERNALSYM WPWIZ_ERROR_FILE_NOT_FOUND}
 
198
 
 
199
//
 
200
// MessageId: WPWIZ_ERROR_PROPSHEET_ERROR
 
201
//
 
202
// MessageText:
 
203
//
 
204
//  An error occurred in the user interface of the Web Publishing Wizard.
 
205
//
 
206
 
 
207
  WPWIZ_ERROR_PROPSHEET_ERROR = DWORD($C0042009);
 
208
  {$EXTERNALSYM WPWIZ_ERROR_PROPSHEET_ERROR}
 
209
 
 
210
//
 
211
// MessageId: WPWIZ_ERROR_OUTOFMEMORY
 
212
//
 
213
// MessageText:
 
214
//
 
215
//  The Web Publishing Wizard has run out of memory. Please close other running applications before continuing.
 
216
//
 
217
 
 
218
  WPWIZ_ERROR_OUTOFMEMORY = DWORD($C004200A);
 
219
  {$EXTERNALSYM WPWIZ_ERROR_OUTOFMEMORY}
 
220
 
 
221
//
 
222
// MessageId: WPWIZ_ERROR_LAST
 
223
//
 
224
// MessageText:
 
225
//
 
226
//  Web Publishing Wizard last error message.
 
227
//
 
228
 
 
229
  WPWIZ_ERROR_LAST = DWORD($400420FF);
 
230
  {$EXTERNALSYM WPWIZ_ERROR_LAST}
 
231
{$ENDIF JWA_IMPLEMENTATIONSECTION}
 
232
 
 
233
{$IFNDEF JWA_OMIT_SECTIONS}
 
234
implementation
 
235
//uses ...
 
236
{$ENDIF JWA_OMIT_SECTIONS}
 
237
 
 
238
 
 
239
{$IFNDEF JWA_INTERFACESECTION}
 
240
//your implementation here
 
241
{$ENDIF JWA_INTERFACESECTION}
 
242
 
 
243
 
 
244
{$IFNDEF JWA_OMIT_SECTIONS}
 
245
end.
 
246
{$ENDIF JWA_OMIT_SECTIONS}