OSDN Git Service

Apply LICENSE to all files as appropriate.
[mingw/mingw-org-wsl.git] / include / winber.h
1 /**
2  * @file winber.h
3  * @copy 2012 MinGW.org project
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  * 
12  * The above copyright notice and this permission notice (including the next
13  * paragraph) shall be included in all copies or substantial portions of the
14  * Software.
15  * 
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  */
24 /*
25   winber.h - Header file for the Windows LDAP Basic Encoding Rules API
26
27   Written by Filip Navara <xnavara@volny.cz>
28
29   References:
30     The C LDAP Application Program Interface
31     http://www.watersprings.org/pub/id/draft-ietf-ldapext-ldap-c-api-05.txt
32
33     Lightweight Directory Access Protocol Reference
34     http://msdn.microsoft.com/library/en-us/netdir/ldap/ldap_reference.asp
35
36   This library is distributed in the hope that it will be useful,
37   but WITHOUT ANY WARRANTY; without even the implied warranty of
38   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
39 */
40
41 #ifndef _WINBER_H
42 #define _WINBER_H
43 #pragma GCC system_header
44
45 #ifdef __cplusplus
46 extern "C" {
47 #endif
48
49 #ifndef WINBERAPI
50 #define WINBERAPI DECLSPEC_IMPORT
51 #endif
52
53 typedef struct berelement BerElement;
54 typedef ULONG ber_len_t;
55 #include <pshpack4.h>
56 typedef struct berval {
57         ber_len_t bv_len;
58         char *bv_val;
59 } BerValue, LDAP_BERVAL, *PLDAP_BERVAL, BERVAL, *PBERVAL;
60 #include <poppack.h>
61
62 typedef ULONG ber_tag_t;
63 typedef INT ber_int_t;
64 typedef UINT ber_uint_t;
65 typedef INT ber_slen_t;
66
67 #define LBER_ERROR ((ber_tag_t)-1)
68 #define LBER_DEFAULT ((ber_tag_t)-1)
69 #define LBER_USE_DER 0x01
70
71 WINBERAPI BerElement *ber_init(const BerValue*);
72 WINBERAPI int ber_printf(BerElement*,const char*,...);
73 WINBERAPI int ber_flatten(BerElement*,BerValue**);
74 WINBERAPI ber_tag_t ber_scanf(BerElement*,const char*,...);
75 WINBERAPI ber_tag_t ber_peek_tag(BerElement*,ber_len_t*);
76 WINBERAPI ber_tag_t ber_skip_tag(BerElement*,ber_len_t*);
77 WINBERAPI ber_tag_t ber_first_element(BerElement*,ber_len_t*,char**);
78 WINBERAPI ber_tag_t ber_next_element(BerElement*,ber_len_t*,char*);
79 WINBERAPI void ber_bvfree(BerValue*);
80 WINBERAPI void ber_bvecfree(BerValue**);
81 WINBERAPI void ber_free(BerElement*,int);
82 WINBERAPI BerValue *ber_bvdup(BerValue*);
83 WINBERAPI BerElement *ber_alloc_t(int);
84
85 #ifdef __cplusplus
86 }
87 #endif
88 #endif /* _WINBER_H */