Link to home
Start Free TrialLog in
Avatar of RonMexico
RonMexico

asked on

How to modify marshall commands for .NET 4.5.1

Hello, it turns out I broke the following code (throws an exception on construction) when I moved up from .NET 4.5 to .NET 4.5.1.

        <System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential)> Public Structure TimerCaps

            Public periodMin As Integer
            Public periodMax As Integer

        End Structure

            <System.Runtime.InteropServices.DllImport("winmm.dll")> _
            Private Shared Function timeGetDevCaps(ByRef caps As TimerCaps, ByVal sizeOfTimerCaps As Integer) As Integer
            End Function

            Shared Sub New()
                ' Get multimedia timer capabilities.
                timeGetDevCaps(caps, System.Runtime.InteropServices.Marshal.SizeOf(caps))
            End Sub

Open in new window


I found this issue report, which seems like a good match, except I don't know how to modify the above code analogously to the "type" cast additions in the solution.  Mine is a structure, not a type.

http://stackoverflow.com/questions/20376324/p-invoke-method-broken-just-by-updating-from-net-4-5-to-net-4-5-1

Can anyone suggest a change to my code to make it 4.5.1 compliant, assuming that the article applies?

Thanks very much.
Avatar of Bob Learned
Bob Learned
Flag of United States of America image

What is the exception that you are getting?
Avatar of RonMexico
RonMexico

ASKER

To be honest I'm not entirely sure I was seeing the proper message, it was along the lines of "type initializer threw an exception" when I was "new"ing an object with the members above.  It did go away when I rolled back from 4.5.1, and I boiled it down to the lines of code above, so it is a pretty good match with the article (which says they overloaded that call, so you need to be more specific when you call it).

Another weird thing is that it happened on some machines and not others (well, at least not mine, the development machine).
What is that code doing?  

Do you need something from 4.5.1, or are you able to stick with 4.5?
It is getting the timer capabilities of a system timer accessed via winmm.dll.  Apparently this needs a structure passed in and out, and this requires marshalling.

I have rolled back to 4.5 for the time being, but it has been *very* useful code (provides much better timing, suitable for animation, than the .net timer) and I would like to get it working for 4.5.1 (and future).
By the way as you can tell I'm weak on marshaling, I got the wrapper from code project or something...
There are three different timer types that you can use:

Comparing the Timer Classes in the .NET Framework Class Library
http://msdn.microsoft.com/en-us/magazine/cc164015.aspx

System.Windows.Forms.Timer
System.Timers.Timer
System.Threading.Timer


What is it about the unsafe timer that you need?
I have actually seen that article and tested each of those timers against the winmm.dll timer and at the time I ran the test it was no contest, for whatever reason it gives me much smoother animation, so I built an animation engine around it.  It works really well, surprises people that a forms application can do that.  

The article suggests that my marshalling calls can be disambiguated and my code can be made to work with 4.5.1... is it unclear to you (like me) how to do that?  Are you thinking of some other reason not to use my timer?
I am always interested in learning new things, so I was curious what you had discovered about the unsafe timer in winmm.dll.

Is this a 64-bit or 32-bit development platform?  

Where does this application run from?

I have access to both 32-bit and 64-bit platforms, but I don't have the time to test 4.5.1 against the marshal code until later.
SOLUTION
Avatar of kaufmed
kaufmed
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
@kaufmed: That's interesting, thanks for trying.   It worked on my machine, which had Visual Studio 2013 (.NET 4.5.1) installed, and did not work on other machines that didn't have VS installed.  All machines were windows 7, and I upgraded to the latest framework on one of the other machines.

@TLO: all machines were 64 bit.  I just double click the EXE after putting on the desktop on the other machine.

I was just looking for syntax suggestions, how to cast per the article from someone who has more experience with the marshal functions -- but I definitely appreciate the add'l insight.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial