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.66.167.231 with SMTP id zr7mr7564742pab.19.1459416299054; Thu, 31 Mar 2016 02:24:59 -0700 (PDT) X-Received: by 10.157.10.70 with SMTP id 64mr154472otg.0.1459416299006; Thu, 31 Mar 2016 02:24:59 -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!sy18no347674igc.0!news-out.google.com!u9ni325igk.0!nntp.google.com!sy18no347666igc.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Thu, 31 Mar 2016 02:24:58 -0700 (PDT) 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 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Declaring GLADE signals with G_MODULE_EXPORT From: George J Injection-Date: Thu, 31 Mar 2016 09:24:59 +0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Xref: news.eternal-september.org comp.lang.ada:29935 Date: 2016-03-31T02:24:58-07:00 List-Id: Hi all! I've got a problem with connecting signals with Builder.Connect_Sig= nals. It's said in description that "...When compiling applications for Win= dows, you must declare callbacks with G_MODULE_EXPORT...". So my question i= s "how to do this?" and what does it mean?=20 For example how I can link this way procedure like=20 --------------------------------------------------------- ;=20 procedure Test(Self:Gtk_Some_Object) is=20 begin=20 null;=20 end Test;=20 -----------------------------------------------------------; I couldn't find any example for Ada with this declaration, and really can't= understand, how I can do it. Thanks.