Skip to content

Commit 4e6a9a5

Browse files
committed
VBoxClient: Eliminated the RTDECL non-sense. [build fix] bugref:10194
svn:sync-xref-src-repo-rev: r174584
1 parent 67cd4cf commit 4e6a9a5

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/VBox/Additions/x11/VBoxClient/wayland-helper-gtk.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $Id: wayland-helper-gtk.cpp 114745 2026-07-21 18:40:35Z knut.osmundsen@oracle.com $ */
1+
/* $Id: wayland-helper-gtk.cpp 114747 2026-07-21 19:17:44Z knut.osmundsen@oracle.com $ */
22
/** @file
33
* Guest Additions - Gtk helper for Wayland.
44
*
@@ -56,7 +56,7 @@ static DECLCALLBACK(int) vbcl_wayland_hlp_gtk_probe(void)
5656
/**
5757
* @interface_method_impl{VBCLWAYLANDHELPER_CLIPBOARD,pfnInit}
5858
*/
59-
int vbcl_wayland_hlp_gtk_clip_init(void)
59+
static DECLCALLBACK(int) vbcl_wayland_hlp_gtk_clip_init(void)
6060
{
6161
VBCL_LOG_CALLBACK;
6262

@@ -66,7 +66,7 @@ int vbcl_wayland_hlp_gtk_clip_init(void)
6666
/**
6767
* @interface_method_impl{VBCLWAYLANDHELPER_CLIPBOARD,pfnTerm}
6868
*/
69-
int vbcl_wayland_hlp_gtk_clip_term(void)
69+
static DECLCALLBACK(int) vbcl_wayland_hlp_gtk_clip_term(void)
7070
{
7171
PSHCLCONTEXT const pShClCtx = &g_Ctx;
7272

@@ -121,7 +121,7 @@ static DECLCALLBACK(int) vbcl_wayland_hlp_gtk_clip_hg_report(PSHCLCONTEXT pCtx,
121121
/**
122122
* @interface_method_impl{VBCLWAYLANDHELPER_DND,pfnInit}
123123
*/
124-
int vbcl_wayland_hlp_gtk_dnd_init(void)
124+
static DECLCALLBACK(int) vbcl_wayland_hlp_gtk_dnd_init(void)
125125
{
126126
VBCL_LOG_CALLBACK;
127127

@@ -131,7 +131,7 @@ int vbcl_wayland_hlp_gtk_dnd_init(void)
131131
/**
132132
* @interface_method_impl{VBCLWAYLANDHELPER_DND,pfnTerm}
133133
*/
134-
int vbcl_wayland_hlp_gtk_dnd_term(void)
134+
static DECLCALLBACK(int) vbcl_wayland_hlp_gtk_dnd_term(void)
135135
{
136136
VBCL_LOG_CALLBACK;
137137

0 commit comments

Comments
 (0)