浏览代码

* Implement (binary) streaming

michael 6 年之前
父节点
当前提交
1b44527498
共有 2 个文件被更改,包括 685 次插入38 次删除
  1. 671 38
      packages/rtl/classes.pas
  2. 14 0
      packages/rtl/rtlconsts.pas

文件差异内容过多而无法显示
+ 671 - 38
packages/rtl/classes.pas


+ 14 - 0
packages/rtl/rtlconsts.pas

@@ -54,6 +54,20 @@ const
 
   SInvalidGUID                  = '"%s" is not a valid GUID value';
 
+  SEmptyStreamIllegalReader       = 'Illegal Nil stream for TReader constructor';
+  SInvalidPropertyValue           = 'Invalid value for property';
+  SInvalidImage                   = 'Invalid stream format';
+  SUnknownProperty                = 'Unknown property: "%s"';
+  SUnknownPropertyType            = 'Unknown property type %d';
+  SAncestorNotFound               = 'Ancestor class for "%s" not found.';
+  SUnsupportedPropertyVariantType = 'Unsupported property variant type %d';
+  SPropertyException              = 'Error reading %s%s%s: %s';
+  SInvalidPropertyPath            = 'Invalid property path';
+  SReadOnlyProperty               = 'Property is read-only';
+  SClassNotFound                  = 'Class "%s" not found';
+
+  SEmptyStreamIllegalWriter     = 'Illegal Nil stream for TWriter constructor';
+
 implementation
 
 end.

部分文件因为文件数量过多而无法显示