<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><pre style="background-color: rgb(255, 255, 255);" class=""><span style="white-space: pre-wrap;" class="">This error occurs because since the Oberon-7 revision, as defined in 2007/2011, pointers must point to (named) records.</span></pre><pre style="background-color: rgb(255, 255, 255);" class=""><span style="white-space: pre-wrap;" class="">See the last sentence of this document:</span></pre><pre style="background-color: rgb(255, 255, 255);" class=""><span style="white-space: pre-wrap;" class=""><a href="https://www.inf.ethz.ch/personal/wirth/Oberon/Oberon07.pdf" class="">https://www.inf.ethz.ch/personal/wirth/Oberon/Oberon07.pdf</a> </span></pre><div class="">AP</div><div class=""><br class=""></div><div class=""><pre style="white-space: pre-wrap; background-color: rgb(255, 255, 255);" class="">--------------------------------------</pre><font face="monospace" class=""><span style="white-space: pre-wrap;" class="">Tomas Kral thomas.kral at email.cz </span></font><span style="white-space: pre-wrap; background-color: rgb(255, 255, 255);" class="">Sat Sep 23 23:00:38 CEST 2017Hi,</span><pre style="background-color: rgb(255, 255, 255);" class=""><span style="white-space: pre-wrap;" class="">
I apologise in case I ha</span><span style="white-space: pre-wrap;" class="">ve asked before, I am getting `undefined pointer</span></pre><pre style="background-color: rgb(255, 255, 255);" class=""><span style="white-space: pre-wrap;" class="">base' compilation error for these pointers.

    ColorTable = POINTER TO ColorTableDesc;
    ColorTableDesc = ARRAY 256 OF RECORD red, green, blue: BYTE END;

    Picture* = POINTER TO PictureDesc;
    PictureDesc* = RECORD
      width*, height*, depth*: INTEGER;
      wth: INTEGER;
      bitmap: Bitmaps.Bitmap;
      base: INTEGER;
      ct: ColorTable
    END;

I can resolve by declaring `ct' as `ColorTableDesc', but I am curious
what I do wrong?

Many thanks in advance. </span></pre></div><div class=""><pre style="white-space: pre-wrap; background-color: rgb(255, 255, 255);" class="">
-- 
Tomas Kral <<a href="https://lists.inf.ethz.ch/mailman/listinfo/oberon" class="">thomas.kral at email.cz</a>></pre><div class=""><br class=""></div></div></body></html>