mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-19 19:09:38 +00:00
Enhanced database locking to actually encrypt the data although the file is not stored before (so changes might get lost) Changed version handling a bit to make future export/save as possible
21 lines
465 B
Objective-C
21 lines
465 B
Objective-C
//
|
|
// MPConstants.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 09.06.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#ifndef MacPass_MPConstants_h
|
|
#define MacPass_MPConstants_h
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
FOUNDATION_EXPORT NSString *const MPPasteBoardType;
|
|
FOUNDATION_EXPORT NSString *const MPErrorDomain;
|
|
FOUNDATION_EXPORT NSString *const MPLegacyDocumentUTI;
|
|
FOUNDATION_EXPORT NSString *const MPXMLDocumentUTI;
|
|
|
|
|
|
#endif
|