Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.53 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /** Parameter structure for the driver I/O operations. */
  2. struct GXSD_IOPARM {
  3.         struct GXSD_HANDLE handle;              ///< The handle of the device. It will be modified by the opendevice().
  4.         unsigned int rwflag;                    ///< Read/Write flags ( GXSD_IOPARM_READ, GXSD_IOPARM_WRITE ).
  5.         int                      cmd;                           ///< Command (e.g. GX_CALL_OPENDEVICE, GX_CALL_CLOSEHANDLE).
  6.         int                      len;                           ///< Length of data in bytes.
  7.         void            *ptr;                           ///< Pointer to the data.
  8.         // struct GX_DEVICE_INFOA devinfo;
  9.         int                      status;                        ///< Status information (error code or 0).
  10. };