pfgwtypes.pas

来自「delphi编写与Palm数据交换管道连接程序。」· PAS 代码 · 共 41 行

PAS
41
字号
unit pfgWTypes;

interface

type
  Long = Integer;
  PWord = ^Word;
  PInteger = ^Integer;
  PLongWord = ^LongWord;

  // Basic type declarations
  TCHAR = Char;
  PTCHAR = PCHAR;

  HANDLE = Integer;
  CONDHANDLE = LongWord;

  DateType = Word;

  // Note: Palm record structure, so all fields are in hi-endian format
  DateTimeType = packed record
    second: Word;
    minute: Word;
    hour: Word;
    day: Word;
    month: Word;
    year: Word;
    weekday: Word;  // Days since Sunday (0 to 6)
  end;
  PDateTimeType = ^DateTimeType;

  TimeType = packed record
    hours: Byte;
    minutes: Byte;
  end;
  PTimeType = ^TimeType;

implementation

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?