That one isn't in winioctlcon.py yet, but you should be able to
define it relatively easily.  According to the headers:

#define IOCTL_SFFDISK_QUERY_DEVICE_PROTOCOL \
            CTL_CODE( FILE_DEVICE_DISK, 0x7a0, METHOD_BUFFERED, FILE_ANY_ACCESS)


You'll probably need to create the output buffer yourself and initialize the 
Size correctly.

typedef struct _SFFDISK_QUERY_DEVICE_PROTOCOL_DATA {
  USHORT Size;
  USHORT Reserved;
  GUID   ProtocolGUID;
}

    Roger



_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to