Statistics
| Revision:

svn-gvsig-desktop / tags / extI18n-0.1.0-1045_8 / libraries / libjni-ecw / include / NCSBase64.h @ 40799

History | View | Annotate | Download (1021 Bytes)

1
/********************************************************
2
** Copyright 2000 Earth Resource Mapping Ltd.
3
** This document contains proprietary source code of
4
** Earth Resource Mapping Ltd, and can only be used under
5
** one of the three licenses as described in the 
6
** license.txt file supplied with this distribution. 
7
** See separate license.txt file for license details 
8
** and conditions.
9
**
10
** This software is covered by US patent #6,442,298,
11
** #6,102,897 and #6,633,688.  Rights to use these patents 
12
** is included in the license agreements.
13
**
14
** FILE:           NCSUtil\NCSBase64.h
15
** CREATED:        16Feb00
16
** AUTHOR:         Nicholas Yue
17
** PURPOSE:        Base64 wrapper functions (header)
18
** EDITS:
19
 *******************************************************/
20

    
21
#ifdef __cplusplus
22
extern "C" {
23
#endif
24

    
25
#ifndef BASE64_H
26
#define BASE64_H
27

    
28
extern void NCSDecodeBase64Message(char *inputMessage,char *outputMessage);
29
extern void NCSEncodeBase64Message(char *inputMessage,char *outputMessage);
30

    
31
#endif // BASE64_H
32

    
33
#ifdef __cplusplus
34
}
35
#endif