I\'m unsure of the syntax for this. I\'m trying to translate this C# code into F#.
struct LASTINPUTINFO
{
public uint cbSize;
public uint dwTime;
}
In addition to Brian's comment, it may be worth pointing out that F# extern signatures reflect C signatures fairly faithfully, so that rather than using the [
attributes on the reference you can probably just declare the parameter as LASTINPUTINFO* plii
, and then pass a reference to a local instance using the && operator when calling the function.