basic implementation, tabling for now
This commit is contained in:
@@ -11,14 +11,14 @@ namespace Foodsoft.Alpm
|
||||
Name = Marshal.PtrToStringUTF8(native->name)!;
|
||||
Version = Marshal.PtrToStringUTF8(native->version)!;
|
||||
Description = Marshal.PtrToStringUTF8(native->description)!;
|
||||
NameHash = native->name_hash;
|
||||
NameHash = (long)native->name_hash;
|
||||
Mod = native->mod;
|
||||
}
|
||||
|
||||
public string Name { get; }
|
||||
public string Version { get; }
|
||||
public string Description { get; }
|
||||
public ulong NameHash { get; }
|
||||
public Int64 NameHash { get; }
|
||||
public ModType Mod { get; }
|
||||
|
||||
public bool Equals(Depend? other)
|
||||
|
||||
Reference in New Issue
Block a user