.NET
cecesh.txt
Associated article: Windows CE's CESH Utility
Tags: .NET
Published source code accompanying the article by Andrew Tucker in which he examines CESH, a utility included with the Windows CE development tools. CESH lets you automate test suites to download and run on a device, while logging results on the desktop machine. Also see CECESH.ZIP.
Windows CE's CESH Utility
by Andrew Tucker
Listing One
/* Function declarations and defines for CESH remote I/O functions */
#ifdef __cplusplus
extern "C"
{
#endif
/* stolen from pkfuncs.h */
int U_ropen(const WCHAR *, UINT);
int U_rread(int, ...


