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
de530b55
Commit
de530b55
authored
Sep 12, 2008
by
Marcus Meissner
Committed by
Alexandre Julliard
Sep 15, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Allocation size markup.
parent
a24550aa
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
wintrust_priv.h
dlls/wintrust/wintrust_priv.h
+2
-2
fci.h
include/fci.h
+1
-1
gdiplusmem.h
include/gdiplusmem.h
+1
-1
snmp.h
include/snmp.h
+2
-2
wintrust.h
include/wintrust.h
+1
-1
No files found.
dlls/wintrust/wintrust_priv.h
View file @
de530b55
...
...
@@ -18,8 +18,8 @@
#ifndef __WINTRUST_PRIV_H__
#define __WINTRUST_PRIV_H__
void
*
WINAPI
WINTRUST_Alloc
(
DWORD
cb
);
void
*
WINAPI
WINTRUST_ReAlloc
(
void
*
ptr
,
DWORD
cb
);
void
*
WINAPI
WINTRUST_Alloc
(
DWORD
cb
)
__WINE_ALLOC_SIZE
(
1
)
;
void
*
WINAPI
WINTRUST_ReAlloc
(
void
*
ptr
,
DWORD
cb
)
__WINE_ALLOC_SIZE
(
2
)
;
void
WINAPI
WINTRUST_Free
(
void
*
p
);
BOOL
WINAPI
WINTRUST_AddStore
(
CRYPT_PROVIDER_DATA
*
data
,
HCERTSTORE
store
);
BOOL
WINAPI
WINTRUST_AddSgnr
(
CRYPT_PROVIDER_DATA
*
data
,
...
...
include/fci.h
View file @
de530b55
...
...
@@ -163,7 +163,7 @@ typedef struct {
/**********************************************************************/
typedef
void
*
(
__cdecl
*
PFNFCIALLOC
)(
ULONG
cb
);
typedef
void
*
(
__cdecl
__WINE_ALLOC_SIZE
(
1
)
*
PFNFCIALLOC
)(
ULONG
cb
);
#define FNFCIALLOC(fn) void * __cdecl fn(ULONG cb)
typedef
void
(
__cdecl
*
PFNFCIFREE
)(
void
*
memory
);
...
...
include/gdiplusmem.h
View file @
de530b55
...
...
@@ -25,7 +25,7 @@
extern
"C"
{
#endif
void
*
WINGDIPAPI
GdipAlloc
(
SIZE_T
);
void
*
WINGDIPAPI
GdipAlloc
(
SIZE_T
)
__WINE_ALLOC_SIZE
(
1
)
;
void
WINGDIPAPI
GdipFree
(
void
*
);
#ifdef __cplusplus
...
...
include/snmp.h
View file @
de530b55
...
...
@@ -275,8 +275,8 @@ INT WINAPI SnmpUtilVarBindListCpy(SnmpVarBindList *pVblDst,
SnmpVarBindList
*
pVblSrc
);
VOID
WINAPI
SnmpUtilVarBindListFree
(
SnmpVarBindList
*
pVbl
);
LPVOID
WINAPI
SnmpUtilMemAlloc
(
UINT
nBytes
);
LPVOID
WINAPI
SnmpUtilMemReAlloc
(
LPVOID
pMem
,
UINT
nBytes
);
LPVOID
WINAPI
SnmpUtilMemAlloc
(
UINT
nBytes
)
__WINE_ALLOC_SIZE
(
1
)
;
LPVOID
WINAPI
SnmpUtilMemReAlloc
(
LPVOID
pMem
,
UINT
nBytes
)
__WINE_ALLOC_SIZE
(
2
)
;
VOID
WINAPI
SnmpUtilMemFree
(
LPVOID
pMem
);
LPSTR
WINAPI
SnmpUtilOidToA
(
AsnObjectIdentifier
*
Oid
);
...
...
include/wintrust.h
View file @
de530b55
...
...
@@ -260,7 +260,7 @@ struct _CRYPT_PROVIDER_DATA;
#define TRUSTERROR_MAX_STEPS 38
typedef
void
*
(
WINAPI
*
PFN_CPD_MEM_ALLOC
)(
DWORD
cbSize
);
typedef
void
*
(
__WINE_ALLOC_SIZE
(
1
)
WINAPI
*
PFN_CPD_MEM_ALLOC
)(
DWORD
cbSize
);
typedef
void
(
WINAPI
*
PFN_CPD_MEM_FREE
)(
void
*
pvMem2Free
);
typedef
BOOL
(
WINAPI
*
PFN_CPD_ADD_STORE
)(
struct
_CRYPT_PROVIDER_DATA
*
pProvData
,
HCERTSTORE
hStore2Add
);
...
...
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