I'm slowly building a C# library that wraps Everything into a fluent .NET API (https://github.com/ju2pom/EverythingNet).
I'd like to add support for file results attributes like size, filename, dates ...
But it's sometimes hard to find the correct way to declare the function prototype.
It would be very useful if you could extend the C# sample to wrap all available functions.
For example I could find the a working syntax for file size:
Code: Select all
[DllImport(EverythingDLL)]
public static extern IntPtr Everything_GetResultSize(int nIndex, IntPtr size);
Thanks