~ubuntu-branches/debian/lenny/fpc/lenny

« back to all changes in this revision

Viewing changes to fpcsrc/packages/base/winunits/jwaadsnms.pas

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-05-17 17:12:11 UTC
  • mfrom: (3.1.9 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080517171211-9qi33xhd9evfa0kg
Tags: 2.2.0-dfsg1-9
[ Torsten Werner ]
* Add Mazen Neifer to Uploaders field.

[ Mazen Neifer ]
* Moved FPC sources into a version dependent directory from /usr/share/fpcsrc
  to /usr/share/fpcsrc/${FPCVERSION}. This allow installing more than on FPC
  release.
* Fixed far call issue in compiler preventing building huge binearies.
  (closes: #477743)
* Updated building dependencies, recomennded and suggested packages.
* Moved fppkg to fp-utils as it is just a helper tool and is not required by
  compiler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{******************************************************************************}
 
2
{                                                                              }
 
3
{ Active Directory Class Names 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: adsnms.h, released June 2000. The original Pascal      }
 
9
{ code is: AdsNms.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: JwaAdsnms.pas,v 1.5 2004/12/08 08:18:35 marquardt Exp $
 
44
 
 
45
unit JwaAdsnms;
 
46
 
 
47
{$WEAKPACKAGEUNIT}
 
48
 
 
49
{$HPPEMIT ''}
 
50
{$HPPEMIT '#include "adsnms.h"'}
 
51
{$HPPEMIT ''}
 
52
 
 
53
{$I jediapilib.inc}
 
54
 
 
55
interface
 
56
 
 
57
//  Contents:   Class Names and schema definitions for ADS objects
 
58
 
 
59
const
 
60
  NAMESPACE_CLASS_NAME        = 'Namespace';
 
61
  {$EXTERNALSYM NAMESPACE_CLASS_NAME}
 
62
  COUNTRY_CLASS_NAME          = 'Country';
 
63
  {$EXTERNALSYM COUNTRY_CLASS_NAME}
 
64
  LOCALITY_CLASS_NAME         = 'Locality';
 
65
  {$EXTERNALSYM LOCALITY_CLASS_NAME}
 
66
  ORGANIZATION_CLASS_NAME     = 'Organization';
 
67
  {$EXTERNALSYM ORGANIZATION_CLASS_NAME}
 
68
  ORGANIZATIONUNIT_CLASS_NAME = 'Organizational Unit';
 
69
  {$EXTERNALSYM ORGANIZATIONUNIT_CLASS_NAME}
 
70
  DOMAIN_CLASS_NAME           = 'Domain';
 
71
  {$EXTERNALSYM DOMAIN_CLASS_NAME}
 
72
  COMPUTER_CLASS_NAME         = 'Computer';
 
73
  {$EXTERNALSYM COMPUTER_CLASS_NAME}
 
74
  USER_CLASS_NAME             = 'User';
 
75
  {$EXTERNALSYM USER_CLASS_NAME}
 
76
  GROUP_CLASS_NAME            = 'Group';
 
77
  {$EXTERNALSYM GROUP_CLASS_NAME}
 
78
  GLOBALGROUP_CLASS_NAME      = 'GlobalGroup';
 
79
  {$EXTERNALSYM GLOBALGROUP_CLASS_NAME}
 
80
  LOCALGROUP_CLASS_NAME       = 'LocalGroup';
 
81
  {$EXTERNALSYM LOCALGROUP_CLASS_NAME}
 
82
  SERVICE_CLASS_NAME          = 'Service';
 
83
  {$EXTERNALSYM SERVICE_CLASS_NAME}
 
84
  FILESERVICE_CLASS_NAME      = 'FileService';
 
85
  {$EXTERNALSYM FILESERVICE_CLASS_NAME}
 
86
  SESSION_CLASS_NAME          = 'Session';
 
87
  {$EXTERNALSYM SESSION_CLASS_NAME}
 
88
  RESOURCE_CLASS_NAME         = 'Resource';
 
89
  {$EXTERNALSYM RESOURCE_CLASS_NAME}
 
90
  FILESHARE_CLASS_NAME        = 'FileShare';
 
91
  {$EXTERNALSYM FILESHARE_CLASS_NAME}
 
92
  PRINTER_CLASS_NAME          = 'PrintQueue';
 
93
  {$EXTERNALSYM PRINTER_CLASS_NAME}
 
94
  PRINTJOB_CLASS_NAME         = 'PrintJob';
 
95
  {$EXTERNALSYM PRINTJOB_CLASS_NAME}
 
96
  SCHEMA_CLASS_NAME           = 'Schema';
 
97
  {$EXTERNALSYM SCHEMA_CLASS_NAME}
 
98
  CLASS_CLASS_NAME            = 'Class';
 
99
  {$EXTERNALSYM CLASS_CLASS_NAME}
 
100
  PROPERTY_CLASS_NAME         = 'Property';
 
101
  {$EXTERNALSYM PROPERTY_CLASS_NAME}
 
102
  SYNTAX_CLASS_NAME           = 'Syntax';
 
103
  {$EXTERNALSYM SYNTAX_CLASS_NAME}
 
104
  ROOTDSE_CLASS_NAME          = 'RootDSE';
 
105
  {$EXTERNALSYM ROOTDSE_CLASS_NAME}
 
106
 
 
107
  NO_SCHEMA                    = '';
 
108
  {$EXTERNALSYM NO_SCHEMA}
 
109
  DOMAIN_SCHEMA_NAME           = 'Domain';
 
110
  {$EXTERNALSYM DOMAIN_SCHEMA_NAME}
 
111
  COMPUTER_SCHEMA_NAME         = 'Computer';
 
112
  {$EXTERNALSYM COMPUTER_SCHEMA_NAME}
 
113
  USER_SCHEMA_NAME             = 'User';
 
114
  {$EXTERNALSYM USER_SCHEMA_NAME}
 
115
  GROUP_SCHEMA_NAME            = 'Group';
 
116
  {$EXTERNALSYM GROUP_SCHEMA_NAME}
 
117
  GLOBALGROUP_SCHEMA_NAME      = 'GlobalGroup';
 
118
  {$EXTERNALSYM GLOBALGROUP_SCHEMA_NAME}
 
119
  LOCALGROUP_SCHEMA_NAME       = 'LocalGroup';
 
120
  {$EXTERNALSYM LOCALGROUP_SCHEMA_NAME}
 
121
  SERVICE_SCHEMA_NAME          = 'Service';
 
122
  {$EXTERNALSYM SERVICE_SCHEMA_NAME}
 
123
  PRINTER_SCHEMA_NAME          = 'PrintQueue';
 
124
  {$EXTERNALSYM PRINTER_SCHEMA_NAME}
 
125
  PRINTJOB_SCHEMA_NAME         = 'PrintJob';
 
126
  {$EXTERNALSYM PRINTJOB_SCHEMA_NAME}
 
127
  FILESERVICE_SCHEMA_NAME      = 'FileService';
 
128
  {$EXTERNALSYM FILESERVICE_SCHEMA_NAME}
 
129
  SESSION_SCHEMA_NAME          = 'Session';
 
130
  {$EXTERNALSYM SESSION_SCHEMA_NAME}
 
131
  RESOURCE_SCHEMA_NAME         = 'Resource';
 
132
  {$EXTERNALSYM RESOURCE_SCHEMA_NAME}
 
133
  FILESHARE_SCHEMA_NAME        = 'FileShare';
 
134
  {$EXTERNALSYM FILESHARE_SCHEMA_NAME}
 
135
  FPNW_FILESERVICE_SCHEMA_NAME = 'FPNWFileService';
 
136
  {$EXTERNALSYM FPNW_FILESERVICE_SCHEMA_NAME}
 
137
  FPNW_SESSION_SCHEMA_NAME     = 'FPNWSession';
 
138
  {$EXTERNALSYM FPNW_SESSION_SCHEMA_NAME}
 
139
  FPNW_RESOURCE_SCHEMA_NAME    = 'FPNWResource';
 
140
  {$EXTERNALSYM FPNW_RESOURCE_SCHEMA_NAME}
 
141
  FPNW_FILESHARE_SCHEMA_NAME   = 'FPNWFileShare';
 
142
  {$EXTERNALSYM FPNW_FILESHARE_SCHEMA_NAME}
 
143
 
 
144
implementation
 
145
 
 
146
end.