How do we embed windows media player to compact framework windows application?

I am trying to embed windows media player to my C# windowsCE project but it is impossible now. I thought I can do this with the functions of wmp.dll but I can't see them with dumpbin.exe. Is there any solution to embed it to my project without extra program like cfcom.
[284 byte] By [isorac] at [2007-12-16]
# 1
Good afternoon,

In CF 1.0, we didn’t have the support to directly access native COM Objects, so your best answer would be a 3rd Party COM Implementation or writing your own native wrapper around the COM Object that would export the functions you’re interested in so they could be P/Invoke’d.

In V2, we offer COM Interop, but no ActiveX hosting “out of the box”. You can, however, write the managed code to host the ActiveX control yourself. I have to warn you that writing an ActiveX host is an advanced undertaking. The blog entry here (specifically, Point 12) has some good V2 interop information and this blog entry has some general information about hosting native controls on a managed form.

We expect some 3rd parties will provide ActiveX hosting solutions built on top of V2.

I hope this helps,
Jeremy Hance
.NET Compact Framework

jhance_MS at 2007-9-9 > top of Msdn Tech,Smart Device Development,.NET Compact Framework...
# 2
On August 24 tune in for a webcast on hosting ActiveX controls with CF 2.0
AlexFeinman at 2007-9-9 > top of Msdn Tech,Smart Device Development,.NET Compact Framework...