summaryrefslogtreecommitdiff
path: root/plugins/Utils.pas/base64.pas
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-03-10 20:15:02 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-03-10 20:15:02 +0000
commit66a5a3ee980520f1bb690b78e85b6105d0f80347 (patch)
tree6f84f83e07c1af460812090503ec7404cf92b8cd /plugins/Utils.pas/base64.pas
parentbd7fe0980cf5974c432b789323a3fe2f68a107d3 (diff)
other pascal merge
git-svn-id: http://svn.miranda-ng.org/main/trunk@3966 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Utils.pas/base64.pas')
-rw-r--r--plugins/Utils.pas/base64.pas8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Utils.pas/base64.pas b/plugins/Utils.pas/base64.pas
index 1819efbbd5..d6cebae930 100644
--- a/plugins/Utils.pas/base64.pas
+++ b/plugins/Utils.pas/base64.pas
@@ -5,8 +5,8 @@ interface
uses windows;
{ Base64 encode and decode a string }
-function BASE64Encode(src:pByte;len:integer):PAnsiChar;
-function BASE64Decode(src:PAnsiChar;var dst:pByte):integer;
+function Base64Encode(src:pByte;len:integer):PAnsiChar;
+function Base64Decode(src:PAnsiChar;var dst:pByte):integer;
{******************************************************************************}
{******************************************************************************}
@@ -18,7 +18,7 @@ const
base64chars{:array [0..63] of AnsiChar}:PAnsiChar =
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
-function BASE64Encode(src:pByte;len:integer):PAnsiChar;
+function Base64Encode(src:pByte;len:integer):PAnsiChar;
var
dst:PAnsiChar;
begin
@@ -68,7 +68,7 @@ begin
end;
end;
-function BASE64Decode(src:PAnsiChar;var dst:pByte):integer;
+function Base64Decode(src:PAnsiChar;var dst:pByte):integer;
var
slen:integer;
ptr:pByte;