From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.50.87.7 with SMTP id t7mr1006742igz.11.1459416084011; Thu, 31 Mar 2016 02:21:24 -0700 (PDT) X-Received: by 10.182.246.231 with SMTP id xz7mr153895obc.5.1459416083987; Thu, 31 Mar 2016 02:21:23 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!mx02.eternal-september.org!feeder.eternal-september.org!news.glorb.com!nt3no6234371igb.0!news-out.google.com!ha2ni218igb.0!nntp.google.com!nt3no6234366igb.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Thu, 31 Mar 2016 02:21:23 -0700 (PDT) In-Reply-To: <1f780a7e-1972-4f8f-9832-02fbf2bd920a@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=95.173.128.204; posting-account=YB4WOgoAAABLG9D7qoJiPBc6EJSzsPDF NNTP-Posting-Host: 95.173.128.204 References: <1f780a7e-1972-4f8f-9832-02fbf2bd920a@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <68f13969-e3ff-45ae-b797-4f7bfc96203b@googlegroups.com> Subject: Re: Declaring GLADE callbacks with G_MODULE_EXPORT. From: George J Injection-Date: Thu, 31 Mar 2016 09:21:24 +0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Xref: news.eternal-september.org comp.lang.ada:29933 Date: 2016-03-31T02:21:23-07:00 List-Id: On Thursday, 31 March 2016 12:11:12 UTC+3, George J wrote: > Hi all! I've got a problem with connecting signals with Builder.Connect_S= ignals. It's said in description that "...When compiling applications for W= indows, you must declare callbacks with G_MODULE_EXPORT...". So my question= is "how to do this?" and what does it mean?=20 For example how I can link this way procedure like --------------------------------------------------------- procedure Test(Self:Gtk_Some_Object) is begin null; end Test; --------------------------------------------------------- I couldn't find any example for Ada with this declaration, and really can't= understand, how I can do it. Thanks.