You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.9 KiB
53 lines
1.9 KiB
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1999-2000
|
|
//
|
|
// File: msiehost.idl
|
|
//
|
|
// Contents: Definitions for Web Browser OC host (not automatable)
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
//=--------------------------------------------------------------------------=
|
|
// msiehost.h
|
|
//=--------------------------------------------------------------------------=
|
|
// (C) Copyright 1999-2000 Microsoft Corporation. All Rights Reserved.
|
|
//
|
|
// THIS CODE AND INFORMATION IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF
|
|
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
|
|
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
|
|
// PARTICULAR PURPOSE.
|
|
//=--------------------------------------------------------------------------=
|
|
|
|
//---------------------------------------------------------------------------=
|
|
// Definitions for IOleCommandTarget IDs
|
|
|
|
|
|
#ifndef _MSIEHOST_H
|
|
#define _MSIEHOST_H
|
|
|
|
EXTERN_C const GUID CGID_InternetExplorer;
|
|
|
|
// CGID_InternetExplorer CMDID definitions
|
|
#define IECMDID_CLEAR_AUTOCOMPLETE_FOR_FORMS 0
|
|
#define IECMDID_SETID_AUTOCOMPLETE_FOR_FORMS 1
|
|
|
|
#define IECMDID_BEFORENAVIGATE_GETSHELLBROWSE 2
|
|
#define IECMDID_BEFORENAVIGATE_DOEXTERNALBROWSE 3
|
|
#define IECMDID_BEFORENAVIGATE_GETIDLIST 4
|
|
|
|
// Takes a VARIANT of type VT_BOOL for pvarargIn
|
|
// to set it.
|
|
#define IECMDID_SET_INVOKE_DEFAULT_BROWSER_ON_NEW_WINDOW 5
|
|
|
|
// Sets a VARIANT of type VT_BOOL for pvarargOut
|
|
#define IECMDID_GET_INVOKE_DEFAULT_BROWSER_ON_NEW_WINDOW 6
|
|
|
|
// Values for first parameter of IEID_CLEAR_AUTOCOMPLETE_FOR_FORMS
|
|
#define IECMDID_ARG_CLEAR_FORMS_ALL 0
|
|
#define IECMDID_ARG_CLEAR_FORMS_ALL_BUT_PASSWORDS 1
|
|
#define IECMDID_ARG_CLEAR_FORMS_PASSWORDS_ONLY 2
|
|
|
|
#endif
|
|
|
|
|