blob: aab79594309031f7a815f8ceaca075763b038920 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
Description: Fix FTBFS with vala 0.56-6
Author: <name and email of author, optional>
Origin: https://gitlab.gnome.org/GNOME/shotwell/-/commit/1c8760ed7
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1034011
Forwarded: not-needed
Last-Update: 2023-06-14
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: trunk/vapi/libgphoto2.vapi
===================================================================
--- trunk.orig/vapi/libgphoto2.vapi
+++ trunk/vapi/libgphoto2.vapi
@@ -340,19 +340,40 @@ namespace GPhoto {
public void set_message_func([CCode (delegate_target_pos=3.1)] ContextMessageFunc messageFunc);
}
+ [CCode (
+ cheader_filename="gphoto2/gphoto2-context.h"
+ )]
public delegate void ContextIdleFunc(Context context);
+ [CCode (
+ cheader_filename="gphoto2/gphoto2-context.h"
+ )]
public delegate void ContextErrorFunc(Context context, string text);
+ [CCode (
+ cheader_filename="gphoto2/gphoto2-context.h"
+ )]
public delegate void ContextStatusFunc(Context context, string text);
+ [CCode (
+ cheader_filename="gphoto2/gphoto2-context.h"
+ )]
public delegate void ContextMessageFunc(Context context, string text);
// TODO: Support for va_args in Vala, esp. for delegates?
+ [CCode (
+ cheader_filename="gphoto2/gphoto2-context.h"
+ )]
public delegate uint ContextProgressStartFunc(Context context, float target, string text);
+ [CCode (
+ cheader_filename="gphoto2/gphoto2-context.h"
+ )]
public delegate void ContextProgressUpdateFunc(Context context, uint id, float current);
+ [CCode (
+ cheader_filename="gphoto2/gphoto2-context.h"
+ )]
public delegate void ContextProgressStopFunc(Context context, uint id);
[CCode (
|