gaopeng218 发表于 2011-4-13 21:44:32

飞凌-alexlee 发表于 2011-4-14 08:21:33


    static extern unsafe System.IntPtr CreateFile
    (
      string FileName,          // file name
      uint DesiredAccess,       // access mode
      uint ShareMode,         // share mode
      uint SecurityAttributes,// Security Attributes
      uint CreationDisposition, // how to create
      uint FlagsAndAttributes,// file attributes
      int hTemplateFile         // handle to template file
    );

   
    static extern unsafe bool ReadFile
    (
      System.IntPtr hFile,      // handle to file
      void* pBuffer,            // data buffer
      int NumberOfBytesToRead,// number of bytes to read
      int* pNumberOfBytesRead,// number of bytes read
      int Overlapped            // overlapped buffer
    );

   
    static extern unsafe bool CloseHandle
    (
      System.IntPtr hObject // handle to object
    );

    public bool Open(string FileName)
    {
      // open the existing file for reading      
      handle = CreateFile
      (
            FileName,
            GENERIC_READ,
            0,
            0,
            OPEN_EXISTING,
            0,
            0
      );

      if (handle != System.IntPtr.Zero)
      {
            return true;
      }
      else
      {
            return false;
      }
    }

    public unsafe int Read(byte[] buffer, int index, int count)
    {
      int n = 0;
      fixed (byte* p = buffer)
      {
            if (!ReadFile(handle, p + index, count, &n, 0))
            {
                return 0;
            }
      }
      return n;
    }

gaopeng218 发表于 2011-4-16 21:23:28

fdlm 发表于 2011-10-21 23:12:22

页: [1]
查看完整版本: 请问wince中,用什么函数(C#)操作I/O口