[DllImport("coredll.dll")]
static extern IntPtr CreateFile(String lpFileName, UInt32 dwDesiredAccess, UInt32 dwShareMode, IntPtr lpSecurityAttributes, UInt32 dwCreationDisposition, UInt32 dwFlagsAndAttributes, IntPtr hTemplateFile);
Declare Function CreateFile Lib "coredll.dll" (TODO) As TODO
None.
lpSecurityAttributes can be left as an IntPtr - CE doesn't use it. Set this to be 0
.
You'll need this API if you're doing serial comms.
Please add some!
Please add some!
TODO