Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
68852827
Commit
68852827
authored
Dec 01, 2022
by
Alex Henrie
Committed by
Alexandre Julliard
Dec 03, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Annotate ber_(alloc_t|bvdup|init) with __WINE_(DEALLOC|MALLOC).
parent
0aae4b05
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
winber.h
include/winber.h
+6
-5
No files found.
include/winber.h
View file @
68852827
...
...
@@ -26,14 +26,15 @@ typedef int ber_int_t;
typedef
unsigned
int
ber_tag_t
;
typedef
unsigned
int
ber_len_t
;
BerElement
*
CDECL
ber_alloc_t
(
int
);
BERVAL
*
CDECL
ber_bvdup
(
BERVAL
*
);
void
CDECL
ber_bvecfree
(
BERVAL
**
);
void
CDECL
ber_free
(
BerElement
*
,
int
);
void
CDECL
ber_bvfree
(
BERVAL
*
);
BerElement
*
CDECL
ber_alloc_t
(
int
)
__WINE_DEALLOC
(
ber_free
)
__WINE_MALLOC
;
BERVAL
*
CDECL
ber_bvdup
(
BERVAL
*
)
__WINE_DEALLOC
(
ber_bvfree
)
__WINE_MALLOC
;
void
CDECL
ber_bvecfree
(
BERVAL
**
);
ULONG
CDECL
ber_first_element
(
BerElement
*
,
ULONG
*
,
char
**
);
int
CDECL
ber_flatten
(
BerElement
*
,
BERVAL
**
);
void
CDECL
ber_free
(
BerElement
*
,
int
);
BerElement
*
CDECL
ber_init
(
BERVAL
*
);
BerElement
*
CDECL
ber_init
(
BERVAL
*
)
__WINE_DEALLOC
(
ber_free
)
__WINE_MALLOC
;
ULONG
CDECL
ber_next_element
(
BerElement
*
,
ULONG
*
,
char
*
);
ULONG
CDECL
ber_peek_tag
(
BerElement
*
,
ULONG
*
);
int
WINAPIV
ber_printf
(
BerElement
*
,
char
*
,
...
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment