Update release

This commit is contained in:
vczh
2024-02-26 03:40:56 -08:00
parent 7c296af0f4
commit 9688e6bd4f
21 changed files with 3405 additions and 2837 deletions

View File

@@ -825,11 +825,6 @@ Sys
return DateTime::FromDateTime(year, month, day, hour, minute, second, milliseconds);
}
DateTime Sys::CreateDateTime(vuint64_t filetime)
{
return DateTime::FromFileTime(filetime);
}
Ptr<IValueEnumerable> Sys::ReverseEnumerable(Ptr<IValueEnumerable> value)
{
auto list = value.Cast<IValueReadonlyList>();
@@ -1067,7 +1062,6 @@ WfLoadLibraryTypes
CLASS_MEMBER_STATIC_METHOD_OVERLOAD(CreateDateTime, {L"year" _ L"month" _ L"day" }, DateTime(*)(vint, vint, vint))
CLASS_MEMBER_STATIC_METHOD_OVERLOAD(CreateDateTime, { L"year" _ L"month" _ L"day" _ L"hour" _ L"minute" _ L"second" _ L"milliseconds" }, DateTime(*)(vint, vint, vint, vint, vint, vint, vint))
CLASS_MEMBER_STATIC_METHOD_OVERLOAD(CreateDateTime, { L"filetime" }, DateTime(*)(vuint64_t))
END_CLASS_MEMBER(Sys)
BEGIN_CLASS_MEMBER(Math)