// iscsiop.h
typedef struct _SetGroupPresharedKey_IN {
ULONG KeySize;
UCHAR Key[1];
} SetGroupPresharedKey_IN, *PSetGroupPresharedKey_IN;
View the official Windows Driver Kit DDI referenceNo description available.
The SetGroupPresharedKey_IN structure holds the input data for the SetGroupPresharedKey method.
KeySizeThe size, in bytes, of the key in Key.
KeyThe preshared group key.
You must implement this method.