Click here to Skip to main content
15,886,563 members
Articles / Desktop Programming / ATL

VS File Finder

Rate me:
Please Sign up or sign in to vote.
4.90/5 (39 votes)
8 May 20053 min read 223.2K   3.3K   37  
A Visual Studio add-in to help navigate around large projects.

/* this ALWAYS GENERATED file contains the definitions for the interfaces */


 /* File created by MIDL compiler version 6.00.0361 */
/* at Sat Feb 21 15:00:03 2004
 */
/* Compiler settings for .\VSFileFinderCtrl.idl:
    Oicf, W1, Zp8, env=Win32 (32b run)
    protocol : dce , ms_ext, c_ext, robust
    error checks: allocation ref bounds_check enum stub_data 
    VC __declspec() decoration level: 
         __declspec(uuid()), __declspec(selectany), __declspec(novtable)
         DECLSPEC_UUID(), MIDL_INTERFACE()
*/
//@@MIDL_FILE_HEADING(  )

#pragma warning( disable: 4049 )  /* more than 64k source lines */


/* verify that the <rpcndr.h> version is high enough to compile this file*/
#ifndef __REQUIRED_RPCNDR_H_VERSION__
#define __REQUIRED_RPCNDR_H_VERSION__ 475
#endif

#include "rpc.h"
#include "rpcndr.h"

#ifndef __RPCNDR_H_VERSION__
#error this stub requires an updated version of <rpcndr.h>
#endif // __RPCNDR_H_VERSION__


#ifndef __VSFileFinderCtrlidl_h__
#define __VSFileFinderCtrlidl_h__

#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif

/* Forward Declarations */ 

#ifndef ___DVSFileFinderCtrl_FWD_DEFINED__
#define ___DVSFileFinderCtrl_FWD_DEFINED__
typedef interface _DVSFileFinderCtrl _DVSFileFinderCtrl;
#endif 	/* ___DVSFileFinderCtrl_FWD_DEFINED__ */


#ifndef ___DVSFileFinderCtrlEvents_FWD_DEFINED__
#define ___DVSFileFinderCtrlEvents_FWD_DEFINED__
typedef interface _DVSFileFinderCtrlEvents _DVSFileFinderCtrlEvents;
#endif 	/* ___DVSFileFinderCtrlEvents_FWD_DEFINED__ */


#ifndef __VSFileFinderCtrl_FWD_DEFINED__
#define __VSFileFinderCtrl_FWD_DEFINED__

#ifdef __cplusplus
typedef class VSFileFinderCtrl VSFileFinderCtrl;
#else
typedef struct VSFileFinderCtrl VSFileFinderCtrl;
#endif /* __cplusplus */

#endif 	/* __VSFileFinderCtrl_FWD_DEFINED__ */


#ifdef __cplusplus
extern "C"{
#endif 

void * __RPC_USER MIDL_user_allocate(size_t);
void __RPC_USER MIDL_user_free( void * ); 


#ifndef __VSFileFinderCtrlLib_LIBRARY_DEFINED__
#define __VSFileFinderCtrlLib_LIBRARY_DEFINED__

/* library VSFileFinderCtrlLib */
/* [control][helpstring][helpfile][version][uuid] */ 


EXTERN_C const IID LIBID_VSFileFinderCtrlLib;

#ifndef ___DVSFileFinderCtrl_DISPINTERFACE_DEFINED__
#define ___DVSFileFinderCtrl_DISPINTERFACE_DEFINED__

/* dispinterface _DVSFileFinderCtrl */
/* [helpstring][uuid] */ 


EXTERN_C const IID DIID__DVSFileFinderCtrl;

#if defined(__cplusplus) && !defined(CINTERFACE)

    MIDL_INTERFACE("A65A9F34-1852-4D8A-A537-D9F231477509")
    _DVSFileFinderCtrl : public IDispatch
    {
    };
    
#else 	/* C style interface */

    typedef struct _DVSFileFinderCtrlVtbl
    {
        BEGIN_INTERFACE
        
        HRESULT ( STDMETHODCALLTYPE *QueryInterface )( 
            _DVSFileFinderCtrl * This,
            /* [in] */ REFIID riid,
            /* [iid_is][out] */ void **ppvObject);
        
        ULONG ( STDMETHODCALLTYPE *AddRef )( 
            _DVSFileFinderCtrl * This);
        
        ULONG ( STDMETHODCALLTYPE *Release )( 
            _DVSFileFinderCtrl * This);
        
        HRESULT ( STDMETHODCALLTYPE *GetTypeInfoCount )( 
            _DVSFileFinderCtrl * This,
            /* [out] */ UINT *pctinfo);
        
        HRESULT ( STDMETHODCALLTYPE *GetTypeInfo )( 
            _DVSFileFinderCtrl * This,
            /* [in] */ UINT iTInfo,
            /* [in] */ LCID lcid,
            /* [out] */ ITypeInfo **ppTInfo);
        
        HRESULT ( STDMETHODCALLTYPE *GetIDsOfNames )( 
            _DVSFileFinderCtrl * This,
            /* [in] */ REFIID riid,
            /* [size_is][in] */ LPOLESTR *rgszNames,
            /* [in] */ UINT cNames,
            /* [in] */ LCID lcid,
            /* [size_is][out] */ DISPID *rgDispId);
        
        /* [local] */ HRESULT ( STDMETHODCALLTYPE *Invoke )( 
            _DVSFileFinderCtrl * This,
            /* [in] */ DISPID dispIdMember,
            /* [in] */ REFIID riid,
            /* [in] */ LCID lcid,
            /* [in] */ WORD wFlags,
            /* [out][in] */ DISPPARAMS *pDispParams,
            /* [out] */ VARIANT *pVarResult,
            /* [out] */ EXCEPINFO *pExcepInfo,
            /* [out] */ UINT *puArgErr);
        
        END_INTERFACE
    } _DVSFileFinderCtrlVtbl;

    interface _DVSFileFinderCtrl
    {
        CONST_VTBL struct _DVSFileFinderCtrlVtbl *lpVtbl;
    };

    

#ifdef COBJMACROS


#define _DVSFileFinderCtrl_QueryInterface(This,riid,ppvObject)	\
    (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)

#define _DVSFileFinderCtrl_AddRef(This)	\
    (This)->lpVtbl -> AddRef(This)

#define _DVSFileFinderCtrl_Release(This)	\
    (This)->lpVtbl -> Release(This)


#define _DVSFileFinderCtrl_GetTypeInfoCount(This,pctinfo)	\
    (This)->lpVtbl -> GetTypeInfoCount(This,pctinfo)

#define _DVSFileFinderCtrl_GetTypeInfo(This,iTInfo,lcid,ppTInfo)	\
    (This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)

#define _DVSFileFinderCtrl_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)	\
    (This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)

#define _DVSFileFinderCtrl_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)	\
    (This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)

#endif /* COBJMACROS */


#endif 	/* C style interface */


#endif 	/* ___DVSFileFinderCtrl_DISPINTERFACE_DEFINED__ */


#ifndef ___DVSFileFinderCtrlEvents_DISPINTERFACE_DEFINED__
#define ___DVSFileFinderCtrlEvents_DISPINTERFACE_DEFINED__

/* dispinterface _DVSFileFinderCtrlEvents */
/* [helpstring][uuid] */ 


EXTERN_C const IID DIID__DVSFileFinderCtrlEvents;

#if defined(__cplusplus) && !defined(CINTERFACE)

    MIDL_INTERFACE("F7D70BB9-72F3-4BED-921C-1EF437E24225")
    _DVSFileFinderCtrlEvents : public IDispatch
    {
    };
    
#else 	/* C style interface */

    typedef struct _DVSFileFinderCtrlEventsVtbl
    {
        BEGIN_INTERFACE
        
        HRESULT ( STDMETHODCALLTYPE *QueryInterface )( 
            _DVSFileFinderCtrlEvents * This,
            /* [in] */ REFIID riid,
            /* [iid_is][out] */ void **ppvObject);
        
        ULONG ( STDMETHODCALLTYPE *AddRef )( 
            _DVSFileFinderCtrlEvents * This);
        
        ULONG ( STDMETHODCALLTYPE *Release )( 
            _DVSFileFinderCtrlEvents * This);
        
        HRESULT ( STDMETHODCALLTYPE *GetTypeInfoCount )( 
            _DVSFileFinderCtrlEvents * This,
            /* [out] */ UINT *pctinfo);
        
        HRESULT ( STDMETHODCALLTYPE *GetTypeInfo )( 
            _DVSFileFinderCtrlEvents * This,
            /* [in] */ UINT iTInfo,
            /* [in] */ LCID lcid,
            /* [out] */ ITypeInfo **ppTInfo);
        
        HRESULT ( STDMETHODCALLTYPE *GetIDsOfNames )( 
            _DVSFileFinderCtrlEvents * This,
            /* [in] */ REFIID riid,
            /* [size_is][in] */ LPOLESTR *rgszNames,
            /* [in] */ UINT cNames,
            /* [in] */ LCID lcid,
            /* [size_is][out] */ DISPID *rgDispId);
        
        /* [local] */ HRESULT ( STDMETHODCALLTYPE *Invoke )( 
            _DVSFileFinderCtrlEvents * This,
            /* [in] */ DISPID dispIdMember,
            /* [in] */ REFIID riid,
            /* [in] */ LCID lcid,
            /* [in] */ WORD wFlags,
            /* [out][in] */ DISPPARAMS *pDispParams,
            /* [out] */ VARIANT *pVarResult,
            /* [out] */ EXCEPINFO *pExcepInfo,
            /* [out] */ UINT *puArgErr);
        
        END_INTERFACE
    } _DVSFileFinderCtrlEventsVtbl;

    interface _DVSFileFinderCtrlEvents
    {
        CONST_VTBL struct _DVSFileFinderCtrlEventsVtbl *lpVtbl;
    };

    

#ifdef COBJMACROS


#define _DVSFileFinderCtrlEvents_QueryInterface(This,riid,ppvObject)	\
    (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)

#define _DVSFileFinderCtrlEvents_AddRef(This)	\
    (This)->lpVtbl -> AddRef(This)

#define _DVSFileFinderCtrlEvents_Release(This)	\
    (This)->lpVtbl -> Release(This)


#define _DVSFileFinderCtrlEvents_GetTypeInfoCount(This,pctinfo)	\
    (This)->lpVtbl -> GetTypeInfoCount(This,pctinfo)

#define _DVSFileFinderCtrlEvents_GetTypeInfo(This,iTInfo,lcid,ppTInfo)	\
    (This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)

#define _DVSFileFinderCtrlEvents_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)	\
    (This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)

#define _DVSFileFinderCtrlEvents_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)	\
    (This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)

#endif /* COBJMACROS */


#endif 	/* C style interface */


#endif 	/* ___DVSFileFinderCtrlEvents_DISPINTERFACE_DEFINED__ */


EXTERN_C const CLSID CLSID_VSFileFinderCtrl;

#ifdef __cplusplus

class DECLSPEC_UUID("F45B6628-6873-43f1-A050-84574FBB1FAE")
VSFileFinderCtrl;
#endif
#endif /* __VSFileFinderCtrlLib_LIBRARY_DEFINED__ */

/* Additional Prototypes for ALL interfaces */

/* end of Additional Prototypes */

#ifdef __cplusplus
}
#endif

#endif


By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions