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

📄 rmahyper.pas

📁 Delphi源码REAlRMSDK.rar
💻 PAS
字号:
unit RmaHyper;

interface

//***************************************************************************
//
//  $Id: rmahyper.h,v 1.10 1999/09/14 21:57:52 rahul Exp $
//
//  Copyright (C) 1995-1999 RealNetworks, Inc. All rights reserved.
//
//  http://www.real.com/devzone
//
//  This program contains proprietary
//  information of Progressive Networks, Inc, and is licensed
//  subject to restrictions on use and distribution.
//
//
//  Simple Hyper Navigation Interfaces
//
//

//***************************************************************************
//
//  Interface:
//
//	IRMAHyperNavigate
//
//  Purpose:
//
//	Allows you to perform simple "Go to URL" operations.
//
//  IID_IRMAHyperNavigate:
//
//	{00000900-0901-11d1-8B06-00A024406D59}
//
//

const
  IID_IRMAHyperNavigate: TGUID = '{00000900-0901-11d1-8B06-00A024406D59}';
  {$EXTERNALSYM IID_IRMAHyperNavigate}

type
  IRMAHyperNavigate = interface (IUnknown)
  ['{00000900-0901-11d1-8B06-00A024406D59}']

    //***********************************************************************
    //	Method:
    //	    IRMAHyperNavigate::GoToURL
    //	Purpose:
    //	    Performs a simple Go To URL operation.
    //	Parameters:
    //      pURL: fully qualified URL such as http://www.real.com
    //	    pTarget: target frame.  To not use a frame, set this to NULL
    //

    function GoToURL(pURL: PChar; pTarget: PChar): HRESULT; stdcall;
    
  end;
  {$EXTERNALSYM IRMAHyperNavigate}

implementation

end.

⌨️ 快捷键说明

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