diff options
author | Alexey Kulakov <panda75@bk.ru> | 2014-03-28 20:15:45 +0000 |
---|---|---|
committer | Alexey Kulakov <panda75@bk.ru> | 2014-03-28 20:15:45 +0000 |
commit | 1ef0329818e7ae30435f4c94d21862c7750f5601 (patch) | |
tree | 0cee1172022e75d0fe4b7aa746abbf9d3a1d2437 /include/delphi/m_crypto.inc | |
parent | 20f4a5534324ba89fa08f2a6948b1400547c9362 (diff) |
Miranda API update
Watrack: LastFM dialog crash fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@8780 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/delphi/m_crypto.inc')
-rw-r--r-- | include/delphi/m_crypto.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/delphi/m_crypto.inc b/include/delphi/m_crypto.inc index 3320fde380..c949bda009 100644 --- a/include/delphi/m_crypto.inc +++ b/include/delphi/m_crypto.inc @@ -33,14 +33,14 @@ type // get/set the instance key
getKeyLength:function():size_t; stdcall;
- getKey :function(pKey:pByte; cbKeyLen:size_t):bool; stdcall;
- setKey :function(const pKey:pByte; cbKeyLen:size_t):bool; stdcall;
+ getKey :function(pKey:pByte; cbKeyLen:size_t):ByteBool; stdcall;
+ setKey :function(const pKey:pByte; cbKeyLen:size_t):ByteBool; stdcall;
- generateKey:function():bool; stdcall; // creates a new key inside
+ generateKey:function():ByteBool; stdcall; // creates a new key inside
purgeKey :procedure(); stdcall; // purges a key from memory
// sets the master password (in utf-8)
- checkPassword:function (const pszPassword:PAnsiChar):bool; stdcall;
+ checkPassword:function (const pszPassword:PAnsiChar):ByteBool; stdcall;
setPassword :procedure(const pszPassword:PAnsiChar); stdcall;
// result must be freed using mir_free or assigned to mir_ptr<BYTE>
|