untwinamp.pas

来自「phonectrl是一款利用手机遥控电脑的软件」· PAS 代码 · 共 52 行

PAS
52
字号
{*******************************************************}
{                                                       }
{       手机遥控器 v1.0                                 }
{                                                       }
{       版权所有 (C) 2002, 2003 MyvNet                  }
{                                                       }
{      作者:      小冬[kendling]                        }
{      邮件:      kendling@sina.com                     }
{      主页:      http://www.MyvNet.com                 }
{                                                       }
{*******************************************************}

unit UntWinamp;

interface

uses
  wa_ipc, ipc_pe;

type
{ TWinampControl }

  TWinampControl = class(TObject)
  private
    FCanUse: Boolean;
  protected

  public
    constructor Create;
    destructor Destroy; override;
  published

  end;


implementation

{ TWinampControl }

constructor TWinampControl.Create;
begin
  
end;

destructor TWinampControl.Destroy;
begin

  inherited;
end;

end.

⌨️ 快捷键说明

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