Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
217 B

  1. //
  2. // The following struct is used for creating a list out of
  3. // a comma delimited string
  4. // See also: CreateTokenList
  5. //
  6. typedef struct _KEYDATA {
  7. DWORD cTokens;
  8. LPWSTR pTokens[1];
  9. } KEYDATA, *PKEYDATA;