From 22d2062d954dcb88fa3dc65281d3f3d88ae87d68 Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Wed, 9 Jan 2019 18:25:10 +0000 Subject: Introduce GIT_CALLBACK macro to enforce cdecl Since we now always build the library with cdecl calling conventions, our callbacks should be decorated as such so that users will not be able to provide callbacks defined with other calling conventions. The `GIT_CALLBACK` macro will inject the `__cdecl` attribute as appropriate. --- include/git2/notes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/git2/notes.h') diff --git a/include/git2/notes.h b/include/git2/notes.h index 853e5de59..c36149e5b 100644 --- a/include/git2/notes.h +++ b/include/git2/notes.h @@ -26,7 +26,7 @@ GIT_BEGIN_DECL * - annotated_object_id: Oid of the git object being annotated * - payload: Payload data passed to `git_note_foreach` */ -typedef int (*git_note_foreach_cb)( +typedef int GIT_CALLBACK(git_note_foreach_cb)( const git_oid *blob_id, const git_oid *annotated_object_id, void *payload); /** -- cgit v1.2.1