.NET
ceremote.txt
Associated article: The Windows CE 2.0 Remote API
Tags: .NET
Published source code accompanying the article by Andrew Tucker in which he discusses Windows CE's CeRapiInvoke, a unique high-level interface to query the device for information like the processor type and OS version. Also see CEREMOTE.ZIP.
The Windows CE 2.0 Remote API
by Andrew Tucker
Example 1:
HRESULT STDAPICALLTYPE CeRapiInvoke(LPCWSTR lpwszDll,
LPCWSTR lpwszFunc,
DWORD dwInputCount,
LPBYTE pcbIn,
WORD *pcbOutput,
LPBYTE *ppbOutput,
IRAPIStream *ppStream,
DWORD dwReserved)
Example 2:
HRESULT STDAPICALLTYPE RemoteFunc(DWORD cbInput,
BYTE *pbInput,
DWORD *pcbOutput
BYTE **ppbOutput,
...


