rmahyper.pas
来自「Delphi源码REAlRMSDK.rar」· PAS 代码 · 共 64 行
PAS
64 行
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 + =
减小字号Ctrl + -
显示快捷键?