Skip to content

Instantly share code, notes, and snippets.

@Zaaphod
Zaaphod / Animation_Test.Pas
Created January 11, 2021 12:59
Sample program to show errors with PTCGraph and PTCCRT
{$H+}
Program Animation_Test;
Uses
Windows,ptcgraph,ptccrt,crt;
Type
TSmallBitmapBuffer = packed record
width,
height,
reserved: longint;
@Zaaphod
Zaaphod / Clipboard_Formats.pas
Last active January 2, 2021 02:25 — forked from adam-p/gist:2514182
Displays the contents of the Windows clipboard, including all available formats. Conversion to FreePascal so I can learn more about how the Windows Clipboard works for implementation in a FreePascal Console Application
Uses
Windows;
Type
BT = Record
BT_ID: Byte;
BT_Name: String;
End;
Const
Builtin_Type: Array [0..22] of BT = (