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

« back to all changes in this revision

Viewing changes to fpcsrc/packages/base/winunits/jwalm.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
 
{ Windows API interface Unit for Object Pascal                                 }
4
 
{ Master file for Lan Manager applications                                     }
5
 
{                                                                              }
6
 
{ Portions created by Microsoft are Copyright (C) Microsoft Corporation.       }
7
 
{  All Rights Reserved.                                                        }
8
 
{                                                                              }
9
 
{ The original Pascal code is: JwaLM.pas, released September 2005.             }
10
 
{ The initial developer of the Pascal code is                                  }
11
 
{ Robert Marquardt (robert_marquardt att gmx dott de).                         }
12
 
{                                                                              }
13
 
{ Portions created by Robert Marquardt are Copyright (C) 2005                  }
14
 
{ Robert Marquardt. All Rights Reserved.                                       }
15
 
{                                                                              }
16
 
{ Obtained through: Joint Endeavour of Delphi Innovators (Project JEDI)        }
17
 
{                                                                              }
18
 
{ You may retrieve the latest version of this file at the Project JEDI         }
19
 
{ APILIB home page, located at http://jedi-apilib.sourceforge.net              }
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
 
 
44
 
// $Id: JwaLM.pas,v 1.10 2005/09/07 09:54:54 marquardt Exp $
45
 
 
46
 
unit JwaLM;
47
 
 
48
 
{$WEAKPACKAGEUNIT}
49
 
 
50
 
{$DEFINE JWALM_PAS}
51
 
{$DEFINE JWA_INCLUDEMODE}
52
 
 
53
 
{$I jediapilib.inc}
54
 
 
55
 
interface
56
 
 
57
 
uses
58
 
  JwaWindows;
59
 
 
60
 
{$DEFINE JWA_INTERFACESECTION}
61
 
{$I JwaLmErr.pas}      // LAN Manager network error definitions
62
 
{$I JwaLmCons.pas}     // LAN Manager common definitions
63
 
 
64
 
{$I JwaLmAccess.pas}   // Access, Domain, Group and User classes
65
 
{$I JwaLmAlert.pas}    // Alerter
66
 
{$I JwaLmShare.pas}    // Connection, File, Session and Share classes
67
 
{$I JwaLmMsg.pas}      // Message class
68
 
{$I JwaLmRemUtl.pas}   // Remote Utility class
69
 
{$I JwaLmRepl.pas}     // Replicator class
70
 
{$I JwaLmServer.pas}   // Server class
71
 
{$I JwaLmSvc.pas}      // Service class
72
 
{$I JwaLmUse.pas}      // Use class
73
 
{$I JwaLmWkSta.pas}    // Workstation class
74
 
{$I JwaLmApiBuf.pas}   // NetApiBuffer class
75
 
{$I JwaLmErrLog.pas}   // NetErrorLog class
76
 
{$I JwaLmConfig.pas}   // NetConfig class
77
 
{$I JwaLmStats.pas}    // NetStats class
78
 
{$I JwaLmAudit.pas}    // NetAudit class
79
 
{$I JwaLmJoin.pas}     // NetJoinDomain class
80
 
{$UNDEF JWA_INTERFACESECTION}
81
 
 
82
 
implementation
83
 
 
84
 
uses
85
 
  JwaWinDLLNames;
86
 
 
87
 
{$DEFINE JWA_IMPLEMENTATIONSECTION}
88
 
{$I JwaLmCons.pas}     // LAN Manager common definitions
89
 
{$I JwaLmErr.pas}      // LAN Manager network error definitions
90
 
 
91
 
{$I JwaLmAccess.pas}   // Access, Domain, Group and User classes
92
 
{$I JwaLmAlert.pas}    // Alerter
93
 
{$I JwaLmShare.pas}    // Connection, File, Session and Share classes
94
 
{$I JwaLmMsg.pas}      // Message class
95
 
{$I JwaLmRemUtl.pas}   // Remote Utility class
96
 
{$I JwaLmRepl.pas}     // Replicator class
97
 
{$I JwaLmServer.pas}   // Server class
98
 
{$I JwaLmSvc.pas}      // Service class
99
 
{$I JwaLmUse.pas}      // Use class
100
 
{$I JwaLmWkSta.pas}    // Workstation class
101
 
{$I JwaLmApiBuf.pas}   // NetApiBuffer class
102
 
{$I JwaLmErrLog.pas}   // NetErrorLog class
103
 
{$I JwaLmConfig.pas}   // NetConfig class
104
 
{$I JwaLmStats.pas}    // NetStats class
105
 
{$I JwaLmAudit.pas}    // NetAudit class
106
 
{$I JwaLmJoin.pas}     // NetJoinDomain class
107
 
{$UNDEF JWA_IMPLEMENTATIONSECTION}
108
 
 
109
 
end.
110