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.67.30.161 with SMTP id kf1mr7713238pad.21.1459416185699; Thu, 31 Mar 2016 02:23:05 -0700 (PDT) X-Received: by 10.182.80.74 with SMTP id p10mr154640obx.8.1459416185617; Thu, 31 Mar 2016 02:23:05 -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!sy18no347302igc.0!news-out.google.com!ha2ni218igb.0!nntp.google.com!nt3no6234707igb.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Thu, 31 Mar 2016 02:23:05 -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:23:05 +0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Xref: news.eternal-september.org comp.lang.ada:29934 Date: 2016-03-31T02:23:05-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 --------------------------------------------------------- ; procedure Test(Self:Gtk_Some_Object) is=20 begin=20 null;=20 end Test;=20 --------------------------------------------------------- ; - hide quoted text - I couldn't find any example for Ada with this declaration, and really can't= understand, how I can do it. Thanks.