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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,c6c917a672c16082,start X-Google-Attributes: gid103376,public From: AG Subject: Object Ada question Date: 1999/04/11 Message-ID: <371007F7.8DDEB059@ihug.co.nz>#1/1 X-Deja-AN: 464973128 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii X-Complaints-To: abuse@xtra.co.nz X-Trace: titan.xtra.co.nz 923797433 662238 202.27.180.173 (11 Apr 1999 02:23:53 GMT) Organization: Customer of Telecom Internet Services Mime-Version: 1.0 NNTP-Posting-Date: 11 Apr 1999 02:23:53 GMT Newsgroups: comp.lang.ada Date: 1999-04-11T02:23:53+00:00 List-Id: Hi, I have recently downloaded Object Ada (V7.1.105) from Aonix site and have tried to use Win32 bindings there. A stripped-down program follows. It compiles alright, but won't link. Is it a limitation of the free version or did I miss something? Opening panel says it's a full feature version except for the size. ----- with win32, win32.mapi; use win32, win32.mapi; procedure test is dummy: lpstr; status: ulong; handle: lplhandle; begin status := MAPIlogon(0,dummy, dummy, 0, 0, handle); end; ----- The error I get is: error LNK 2001: unresolved external symbol_MAPIlogon@24 ----- And yes, I have the link to ...\bindings\lib set up. I even tried to cut and past it into a sample provided, no difference. Text search of subdirectories didn't find a name like that either. So, does anybody know how to fix that? Regards, AG