Click here to Skip to main content
15,884,099 members
Articles / Desktop Programming / MFC

Exile 1.8 - The Password Manager

Rate me:
Please Sign up or sign in to vote.
4.57/5 (51 votes)
6 Mar 20058 min read 255K   7.4K   111  
Yet another password manager.
#pragma warning( disable: 4049 )  /* more than 64k source lines */

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


 /* File created by MIDL compiler version 6.00.0347 */
/* at Sat Apr 24 14:13:25 2004
 */
/* Compiler settings for PwsInfo.idl:
    Oicf, W1, Zp8, env=Win32 (32b run)
    protocol : dce , ms_ext, c_ext
    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(  )


/* verify that the <rpcndr.h> version is high enough to compile this file*/
#ifndef __REQUIRED_RPCNDR_H_VERSION__
#define __REQUIRED_RPCNDR_H_VERSION__ 440
#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 COM_NO_WINDOWS_H
#include "windows.h"
#include "ole2.h"
#endif /*COM_NO_WINDOWS_H*/

#ifndef __PwsInfo_h__
#define __PwsInfo_h__

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

/* Forward Declarations */ 

#ifndef __IPasswordStorageShellExt_FWD_DEFINED__
#define __IPasswordStorageShellExt_FWD_DEFINED__
typedef interface IPasswordStorageShellExt IPasswordStorageShellExt;
#endif 	/* __IPasswordStorageShellExt_FWD_DEFINED__ */


#ifndef __PasswordStorageShellExt_FWD_DEFINED__
#define __PasswordStorageShellExt_FWD_DEFINED__

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

#endif 	/* __PasswordStorageShellExt_FWD_DEFINED__ */


/* header files for imported files */
#include "oaidl.h"
#include "ocidl.h"

#ifdef __cplusplus
extern "C"{
#endif 

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

#ifndef __IPasswordStorageShellExt_INTERFACE_DEFINED__
#define __IPasswordStorageShellExt_INTERFACE_DEFINED__

/* interface IPasswordStorageShellExt */
/* [unique][helpstring][uuid][object] */ 


EXTERN_C const IID IID_IPasswordStorageShellExt;

#if defined(__cplusplus) && !defined(CINTERFACE)
    
    MIDL_INTERFACE("7E5B6FE4-6493-4EA3-944E-13FA95967E48")
    IPasswordStorageShellExt : public IUnknown
    {
    public:
    };
    
#else 	/* C style interface */

    typedef struct IPasswordStorageShellExtVtbl
    {
        BEGIN_INTERFACE
        
        HRESULT ( STDMETHODCALLTYPE *QueryInterface )( 
            IPasswordStorageShellExt * This,
            /* [in] */ REFIID riid,
            /* [iid_is][out] */ void **ppvObject);
        
        ULONG ( STDMETHODCALLTYPE *AddRef )( 
            IPasswordStorageShellExt * This);
        
        ULONG ( STDMETHODCALLTYPE *Release )( 
            IPasswordStorageShellExt * This);
        
        END_INTERFACE
    } IPasswordStorageShellExtVtbl;

    interface IPasswordStorageShellExt
    {
        CONST_VTBL struct IPasswordStorageShellExtVtbl *lpVtbl;
    };

    

#ifdef COBJMACROS


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

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

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


#endif /* COBJMACROS */


#endif 	/* C style interface */




#endif 	/* __IPasswordStorageShellExt_INTERFACE_DEFINED__ */



#ifndef __PWSINFOLib_LIBRARY_DEFINED__
#define __PWSINFOLib_LIBRARY_DEFINED__

/* library PWSINFOLib */
/* [helpstring][version][uuid] */ 


EXTERN_C const IID LIBID_PWSINFOLib;

EXTERN_C const CLSID CLSID_PasswordStorageShellExt;

#ifdef __cplusplus

class DECLSPEC_UUID("A0434F16-7467-4B48-8A8C-36311F40978D")
PasswordStorageShellExt;
#endif
#endif /* __PWSINFOLib_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
Russian Federation Russian Federation
I'll think about it later on...

Comments and Discussions