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

« back to all changes in this revision

Viewing changes to packages/extra/palmunits/password.pp

  • 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
 
{$MACRO ON}
2
 
 
3
 
(******************************************************************************
4
 
 *
5
 
 * Copyright (c) 1994-2000 Palm, Inc. or its subsidiaries.
6
 
 * All rights reserved.
7
 
 *
8
 
 * File: Password.h
9
 
 *
10
 
 * Release: Palm OS SDK 4.0 (63220)
11
 
 *
12
 
 * Description:
13
 
 *    Password include file
14
 
 *
15
 
 * History:
16
 
 *    4/1/95 - created by Roger Flores
17
 
 *
18
 
 *****************************************************************************)
19
 
 
20
 
unit password;
21
 
 
22
 
interface
23
 
 
24
 
uses coretraps;
25
 
 
26
 
const
27
 
  pwdLength = 32;
28
 
  pwdEncryptionKeyLength = 64;
29
 
 
30
 
function PwdExists: Boolean; syscall sysTrapPwdExists;
31
 
 
32
 
function PwdVerify(Astring: PChar): Boolean; syscall sysTrapPwdVerify;
33
 
 
34
 
procedure PwdSet(oldPassword, newPassword: PChar); syscall sysTrapPwdSet;
35
 
 
36
 
procedure PwdRemove; syscall sysTrapPwdRemove;
37
 
 
38
 
implementation
39
 
 
40
 
end.
 
 
b'\\ No newline at end of file'