What happened to GLib.Timer.Elapsed method? #1232
-
|
I'm quite certain that it was available in a GirCore version < 0.6.3, even though I can see it in the GLib docs, it's not in the GirCore API docs either, I'm really curious as to why it was removed? I'm able to re-implement it manually in my code using |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
It is correct to use CULong as the standard C type has different sizes on different operating systems. The standard dotnet long has the same size on all operating systems which would be wrong for this API depending on the operating system which executes the code. The API was not explicitly removed. Perhaps it was broken and vanished. But you are welcome to open an issue so I can track it for a future version of GirCore. |
Beta Was this translation helpful? Give feedback.
It is correct to use CULong as the standard C type has different sizes on different operating systems.
The standard dotnet long has the same size on all operating systems which would be wrong for this API depending on the operating system which executes the code.
The API was not explicitly removed. Perhaps it was broken and vanished. But you are welcome to open an issue so I can track it for a future version of GirCore.