VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Format
ModeNameSize
-rw-r--r--Format.manifest1173logplain
-rw-r--r--Format.rc27589logplain
-rw-r--r--Format.vcproj21834logplain
-rw-r--r--Format.vcxproj23671logplain
-rw-r--r--Format.vcxproj.filters12259logplain
-rw-r--r--Format.vcxproj.user141logplain
-rw-r--r--FormatCom.cpp5888logplain
-rw-r--r--FormatCom.h1427logplain
-rw-r--r--FormatCom.idl2001logplain
-rw-r--r--InPlace.c59407logplain
-rw-r--r--InPlace.h2805logplain
-rw-r--r--Resource.h6871logplain
-rw-r--r--Tcformat.c312203logplain
-rw-r--r--Tcformat.h4822logplain
-rw-r--r--VeraCrypt_Wizard.bmp166518logplain
ring &message, const wstring &subject); SystemException (const string &message, int64 errorCode) : Exception (message), ErrorCode (errorCode) { } virtual ~SystemException () throw () { } TC_SERIALIZABLE_EXCEPTION (SystemException); int64 GetErrorCode () const { return ErrorCode; } bool IsError () const; wstring SystemText () const; protected: int64 ErrorCode; }; #undef TC_EXCEPTION_SET #define TC_EXCEPTION_SET \ TC_EXCEPTION_NODECL (SystemException); } #define throw_sys_if(condition) do { if (condition) throw SystemException (SRC_POS); } while (false) #define throw_sys_sub_if(condition,subject) do { if (condition) throw SystemException (SRC_POS, (subject)); } while (false) #endif // TC_HEADER_Platform_SystemException