8000 update uxl files (beta-3.0) by mortend · Pull Request #520 · fuse-open/uno · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

update uxl files (beta-3.0) #520

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/Uno.Data.Xml/cil/System.Xml.uxl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Extensions Backend="CIL">
<Require Assembly="System.Xml" />
<Require Assembly="System.Xml.Linq" />
</Extensions>
<extensions backend="cil">
<require assembly="System.Xml" />
<require assembly="System.Xml.Linq" />
</extensions>
40 changes: 20 additions & 20 deletions lib/Uno.Data.Xml/cpp/pugixml.uxl
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<Extensions Backend="CPlusPlus">
<extensions backend="cplusplus">

<Type Name="Uno.Data.Xml.TargetSpecificXmlNode" />
<Type Name="Uno.Data.Xml.XmlNodeHandle" />
<Type Name="Uno.Data.Xml.XmlAttributeHandle" />
<Type Name="Uno.Data.Xml.XmlNodeImpl">
<CopyFile Type="HeaderFile" Name="pugixml.hpp" />
<CopyFile Type="HeaderFile" Name="pugiconfig.hpp" />
<CopyFile Type="SourceFile" Name="pugixml.cpp" />
<type name="Uno.Data.Xml.TargetSpecificXmlNode" />
<type name="Uno.Data.Xml.XmlNodeHandle" />
<type name="Uno.Data.Xml.XmlAttributeHandle" />
<type name="Uno.Data.Xml.XmlNodeImpl">
<copyFile type="headerFile" name="pugixml.hpp" />
<copyFile type="headerFile" name="pugiconfig.hpp" />
<copyFile type="sourceFile" name="pugixml.cpp" />

<Require Source.Include="pugixml.hpp" />
<require source.include="pugixml.hpp" />

<Method Signature="Parse(string):XmlNodeHandle">
<Require Source.Include="@{Uno.Data.Xml.XmlException:include}" />
<Body>
<method signature="Parse(string):XmlNodeHandle">
<require source.include="@{Uno.Data.Xml.XmlException:include}" />
<body>
pugi::xml_document doc;
pugi::xml_parse_result parseResult = doc.load_string(uCString($0).Ptr, pugi::parse_full);

Expand All @@ -32,11 +32,11 @@

U_THROW(@{Uno.Data.Xml.XmlException(string):new(uString::Utf8(errorMessages[parseResult.status]))});
}
</Body>
</Method>
</body>
</method>

<Method Signature="GenerateXMLTree(Uno.Data.Xml.TargetSpecificXmlNode):XmlNodeHandle">
<Body>
<method signature="GenerateXMLTree(Uno.Data.Xml.TargetSpecificXmlNode):XmlNodeHandle">
<body>
pugi::xml_node node = *((pugi::xml_node*)$0);
@{Uno.Data.Xml.XmlNodeHandle} nodeHandle;

Expand Down Expand Up @@ -89,9 +89,9 @@
}

return nodeHandle;
</Body>
</Method>
</body>
</method>

</Type>
</type>

</Extensions>
</extensions>
14 changes: 7 additions & 7 deletions lib/Uno.Graphics.Utils/dotnet/Uno.Native.uxl
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Extensions Backend="CIL">
<extensions backend="cil">

<Template Name="Uno.Native">
<Require Assembly="@('Uno.Native/Uno.Native.dll':path)" />
<Require UnmanagedLibrary="@('Uno.Native/libuAsset.dylib':path)" Condition="HOST_MAC" />
<Require UnmanagedLibrary="@('Uno.Native/uAsset.dll':path)" Condition="HOST_WIN32" />
</Template>
<template name="Uno.Native">
<require assembly="@('Uno.Native/Uno.Native.dll':path)" />
<require unmanagedLibrary="@('Uno.Native/libuAsset.dylib':path)" condition="HOST_MAC" />
<require unmanagedLibrary="@('Uno.Native/uAsset.dll':path)" condition="HOST_WIN32" />
</template>

</Extensions>
</extensions>
Loading
0