Leaked source code of windows server 2003
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.

14 lines
508 B

  1. #ifndef __IEAKSIE_COOKIE_H__
  2. #define __IEAKSIE_COOKIE_H__
  3. // used for passing info to our dlgprocs on a per dlg basis, need to have this because
  4. // we can have multiple windows open at once(concurrency in the same process so no
  5. // globals/static) as well as multiple dialogs open at once(limited info can be stored in
  6. // CSnapIn itself).
  7. typedef struct _PROPSHEETCOOKIE
  8. {
  9. CSnapIn * pCS;
  10. LPRESULTITEM lpResultItem;
  11. } PROPSHEETCOOKIE, *LPPROPSHEETCOOKIE;
  12. #endif //__IEAKSIE_COOKIE_H__