summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graemeg@gmail.com>2009-11-07 15:40:06 +0200
committerGraeme Geldenhuys <graemeg@gmail.com>2009-11-07 15:40:06 +0200
commit59edde54fe4a529a1d71d862c0246d9b245c6da6 (patch)
tree42a1e2f3c31995c8ca321d2a70449976436750dd
parenta3d1db9bbd6c88b5435b5931279d845ed8a6c2c4 (diff)
downloadfpGUI-59edde54fe4a529a1d71d862c0246d9b245c6da6.tar.xz
New 1bit type - an alternative to boolean type
-rw-r--r--src/IPFFileFormatUnit.pas1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/IPFFileFormatUnit.pas b/src/IPFFileFormatUnit.pas
index d5fef3ae..1acc7857 100644
--- a/src/IPFFileFormatUnit.pas
+++ b/src/IPFFileFormatUnit.pas
@@ -22,6 +22,7 @@ type
pUInt8 = ^uint8;
Unsigned_31 = 0 .. (1 shl 31) - 1; // 31-bit type
Unsigned_4 = 0 .. (1 shl 4) - 1; // 4-bit type
+ Unsigned_1 = 0 .. (1 shl 1) - 1; // 1-bit type
PCharArray = packed array[ 0..0 ] of PCHar;