From 75385fb09b4074a78a694aca8640f4527576178d Mon Sep 17 00:00:00 2001 From: Richard Webb Date: Fri, 1 Nov 2024 11:24:13 +0000 Subject: [PATCH] Plug VT_I8_Property into PropertyFactory --- sources/OpenMcdf.Extensions/OLEProperties/PropertyFactory.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/sources/OpenMcdf.Extensions/OLEProperties/PropertyFactory.cs b/sources/OpenMcdf.Extensions/OLEProperties/PropertyFactory.cs index a787b8ae..c4c01394 100644 --- a/sources/OpenMcdf.Extensions/OLEProperties/PropertyFactory.cs +++ b/sources/OpenMcdf.Extensions/OLEProperties/PropertyFactory.cs @@ -30,6 +30,7 @@ public ITypedPropertyValue NewProperty(VTPropertyType vType, int codePage, uint VTPropertyType.VT_UI1 => new VT_UI1_Property(vType, isVariant), VTPropertyType.VT_UI2 => new VT_UI2_Property(vType, isVariant), VTPropertyType.VT_UI4 => new VT_UI4_Property(vType, isVariant), + VTPropertyType.VT_I8 => new VT_I8_Property(vType, isVariant), VTPropertyType.VT_UI8 => new VT_UI8_Property(vType, isVariant), VTPropertyType.VT_BSTR => new VT_LPSTR_Property(vType, codePage, isVariant), VTPropertyType.VT_LPSTR => CreateLpstrProperty(vType, codePage, propertyIdentifier, isVariant),