OSDN Git Service

Redo the filters based on assumptions discussed in mingw-dvlpr list.
[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 #ifndef _WINBER_H
25 #define _WINBER_H
26 #pragma GCC system_header
27
28 /*
29  * LDAP Basic Encoding Rules API
30  * References:
31  *   The C LDAP Application Program Interface
32  *   http://www.watersprings.org/pub/id/draft-ietf-ldapext-ldap-c-api-05.txt
33  *
34  *   Lightweight Directory Access Protocol Reference
35  *   http://msdn.microsoft.com/library/en-us/netdir/ldap/ldap_reference.asp
36  */
37
38 #ifdef __cplusplus
39 extern "C" {
40 #endif
41
42 #ifndef WINBERAPI
43 #define WINBERAPI DECLSPEC_IMPORT
44 #endif
45
46 typedef struct berelement BerElement;
47 typedef ULONG ber_len_t;
48 #include <pshpack4.h>
49 typedef struct berval {
50         ber_len_t bv_len;
51         char *bv_val;
52 } BerValue, LDAP_BERVAL, *PLDAP_BERVAL, BERVAL, *PBERVAL;
53 #include <poppack.h>
54
55 typedef ULONG ber_tag_t;
56 typedef INT ber_int_t;
57 typedef UINT ber_uint_t;
58 typedef INT ber_slen_t;
59
60 #define LBER_ERROR ((ber_tag_t)-1)
61 #define LBER_DEFAULT ((ber_tag_t)-1)
62 #define LBER_USE_DER 0x01
63
64 WINBERAPI BerElement *ber_init(const BerValue*);
65 WINBERAPI int ber_printf(BerElement*,const char*,...);
66 WINBERAPI int ber_flatten(BerElement*,BerValue**);
67 WINBERAPI ber_tag_t ber_scanf(BerElement*,const char*,...);
68 WINBERAPI ber_tag_t ber_peek_tag(BerElement*,ber_len_t*);
69 WINBERAPI ber_tag_t ber_skip_tag(BerElement*,ber_len_t*);
70 WINBERAPI ber_tag_t ber_first_element(BerElement*,ber_len_t*,char**);
71 WINBERAPI ber_tag_t ber_next_element(BerElement*,ber_len_t*,char*);
72 WINBERAPI void ber_bvfree(BerValue*);
73 WINBERAPI void ber_bvecfree(BerValue**);
74 WINBERAPI void ber_free(BerElement*,int);
75 WINBERAPI BerValue *ber_bvdup(BerValue*);
76 WINBERAPI BerElement *ber_alloc_t(int);
77
78 #ifdef __cplusplus
79 }
80 #endif
81 #endif /* _WINBER_H */