-
Notifications
You must be signed in to change notification settings - Fork 0
/
cwb64.inc
20 lines (18 loc) · 1.18 KB
/
cwb64.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
! ========================================================================== !
! Clarion INCLUDE file cwB64.INC !
! cwB64.cpp !
! adapted from GPL code for Clarion For Windows by John Griffiths -2009 !
! Published with express permission of the author by Gustavo Saracca -2024 !
! !
! Description: Base64 encode and Decode CPP for Clarion !
! Tested and supplied without any warranty. Use at your own risk !
! !
! ========================================================================== !
! Include this file in your programs MAP !
! ========================================================================== !
! MAP
module('cwB64.cpp')
CWencode64(*CSTRING _out, *CSTRING _in, long inlen),SIGNED,RAW ,NAME('_cwencode64')
CWdecode64(*CSTRING out, *CSTRING in, long inlen),SIGNED,RAW ,NAME('_cwdecode64')
end !* end *
! END