M
Mike
I'm trying to implement interprocess communication on a smartphone
using the NamedPipe routines in kernel32. Is this supported in CF 1.0?
2.0?
I've imported the functions from kernel32.dll, but am getting
MissingMethodExceptions when I call them.
The import calls look like the following:
[DllImport("kernel32.dll", SetLastError=true)]
public static extern IntPtr CreateNamedPipe(
String lpName,
uint dwOpenMode,
uint dwPipeMode,
uint nMaxInstances,
uint nOutBufferSize,
uint nInBufferSize,
uint nDefaultTimeOut,
IntPtr pipeSecurityDescriptor
);
Of course, I can't find kernel32 on the phone, so that's not
encouraging.
Thanks,
Mike
using the NamedPipe routines in kernel32. Is this supported in CF 1.0?
2.0?
I've imported the functions from kernel32.dll, but am getting
MissingMethodExceptions when I call them.
The import calls look like the following:
[DllImport("kernel32.dll", SetLastError=true)]
public static extern IntPtr CreateNamedPipe(
String lpName,
uint dwOpenMode,
uint dwPipeMode,
uint nMaxInstances,
uint nOutBufferSize,
uint nInBufferSize,
uint nDefaultTimeOut,
IntPtr pipeSecurityDescriptor
);
Of course, I can't find kernel32 on the phone, so that's not
encouraging.
Thanks,
Mike