Click here to Skip to main content
15,886,513 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 255.3K   7.4K   111  
Yet another password manager.
/********************************************************************
	Created:	27/3/2004, 19:19
	File name: 	D:\Projects\Exile\Exile\menuflags.h
	File path:	D:\Projects\Exile\Exile
	File base:	menuflags
	File ext:	h
	Author:		Gogolev Anton
*********************************************************************/

#ifndef __MENUFLAGS_H__
#define __MENUFLAGS_H__

// File
const long MF_FILE_NEW = 0x0001;
const long MF_FILE_OPEN = 0x0002;
const long MF_FILE_CLOSE = 0x0004;
const long MF_FILE_SAVE = 0x0008;
const long MF_FILE_SAVEAS = 0x0010;
const long MF_FILE_EXPORT_XML = 0x0020;

const long MF_FILE_ALL = 0x003F;

// Edit
const long MF_EDIT_INSERTCATEGORY = 0x0100;
const long MF_EDIT_INSERTELEMENT = 0x0200;
const long MF_EDIT_EDIT = 0x0400;
const long MF_EDIT_DELETE = 0x0800;
const long MF_EDIT_STORAGEPROPERTIES = 0x1000;
const long MF_EDIT_ADVANCED = 0x2000;

const long MF_EDIT_ALL = 0x3F00;

#endif //__MENUFLAGS_H__

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