⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 untwinamp.pas

📁 phonectrl是一款利用手机遥控电脑的软件
💻 PAS
字号:
{*******************************************************}
{                                                       }
{       手机遥控器 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -