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, WEIRD_PORT autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,42a73596a854a4d,start X-Google-Attributes: gid103376,public From: andi Subject: non-visible declaration...error Date: 1999/11/26 Message-ID: <383EE59D.6691E0F8@hrz.tu-chemnitz.de>#1/1 X-Deja-AN: 553407230 Content-Transfer-Encoding: 7bit Organization: TU Chemnitz Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 Newsgroups: comp.lang.ada Date: 1999-11-26T00:00:00+00:00 List-Id: I would compile these rows an I became an error: "wglCreateContext" is not visible non-visible declaration at win32-wingdi.ads:9157 "wglMakeCurrent" is not visible non-visible declaration at win32-wingdi.ads:9179 Hmm... I use the GNAT for WinNT - Compiler 3.12 with the win32ada-binding Here the code: with System; with Win32.Windef; with Win32.Winuser; with Win32.Winmain; with Win32.Wingdi; procedure prog is -- some Var. and const begin -- Window creating things(handler,...) -- OpenGl-init RC := wglCreateContext(hInst); wglMakeCurrent(hInst,RC); -- some others end prog; What can I do ??? Thanx andi