Inside and Out...

An attempt to understand technology better...

  Home  |   Contact  |   Syndication    |   Login
  160 Posts | 0 Stories | 12 Comments | 185 Trackbacks

News


WinToolZone - Spelunking Microsoft Technologies
I work as a developer on the Common Language Runtime (CLR) team, specifically in the areas of exception handling and CLR hosting.
Disclaimer

The information in this weblog is provided "AS IS" with no warranties, and confers no rights. This weblog does not represent the thoughts, intentions, plans or strategies of my employer. It is solely my opinion. Inappropriate comments will be deleted at the authors discretion. All code samples are provided "AS IS" without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

Tag Cloud


Archives

Post Categories

Image Galleries

Links

Windows CE Remote API (RAPI) is the mechanism via which desktop applications can talk with the Windows CE device over ActiveSync connection. However, since RAPI is not supported natively for managed code development, I have been working on an implementation for managed code, CERapi.

You can download CERapi from http://www.wintoolzone.com/showpage.aspx?url=dotnet.aspx

It comes with complete documentation, examples and currently supports:

1) Retrieving device and OS information
2) Retrieving Battery (main and backup) charge details
3) Retrieving Memory details of the device
4) Retrieving Special Folders, Storage details and more…

For more details on how it CERapi works, visit http://geekswithblogs.net/khanna/archive/2005/02/15/23081.aspx and http://geekswithblogs.net/khanna/archive/2005/02/15/23042.aspx.

Your comments and feedback are welcome. Send them from http://www.wintoolzone.com/showpage.aspx?url=feedback.aspx
posted on Thursday, February 24, 2005 9:54 AM

Feedback

# Oliver Sturm's weblog - Managed Windows CE Remote API 2/24/2005 5:05 AM
Oliver Sturm's weblog - Managed Windows CE Remote API

# re: Download CERapi - the managed Windows CE Remote API 6/27/2005 11:35 PM 尖锐湿疣
It's cool.

# re: Download CERapi - the managed Windows CE Remote API 1/11/2006 6:54 PM Colin Porteous
Nice one, but how do I access files in the root folder of the CE device. This fails...
CEFolder rootFolder=new CEFolder("\\");

# re: Download CERapi - the managed Windows CE Remote API 3/11/2007 3:56 PM Chitza
How do I get the device root folder?
CEFolder rootFolder=new CEFolder("\\") throws an exception (not found or smth).

# re: Download CERapi - the managed Windows CE Remote API 3/12/2007 1:59 AM Chitza
Used Reflector, found out that

rootFolderStr = @"\";
CEFolder rootFolder = new CEFolder(rootFolderStr);

works like a charm.

Comments have been closed on this topic.