On 2017-11-12 01:27, James Richters wrote:
    ClockBuffer_With_Time:=ClockBuffer_original;

That seems fine.

    AggClockbuffer^:=ClockBuffer_With_Time^+3*Sizeof(Longint);   //Set 
AggClockBuffer to be 3 Longints past ClockBuffer_with_time

This seems wrong. Try changing that to the following:

  AggClockbuffer := ClockBuffer_With_Time + (3*Sizeof(Longint));



Disclaimer:
  I haven't tried to run your code or my suggested changes.


Regards,
  Graeme

--
fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal
http://fpgui.sourceforge.net/

My public PGP key:  http://tinyurl.com/graeme-pgp
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Reply via email to