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.

54 lines
2.4 KiB

  1. #ifndef _IEAKSIE_H_
  2. #define _IEAKSIE_H_
  3. #include <commctrl.h>
  4. #define IEAK_GPE_BRANDING_SUBDIR TEXT("BRANDING")
  5. #define IEAK_GPE_DESKTOP_SUBDIR TEXT("DESKTOP")
  6. #define IEAK_GPE_COOKIE_FILE TEXT("JONCE")
  7. #define MAX_DISPLAYNAME_SIZE 128
  8. typedef struct _RESULTITEMA
  9. {
  10. DWORD dwNameSpaceItem; // index in g_NameSpace array
  11. INT iNameID; // res id for page name
  12. INT iNamePrefID; // res id for page name for preference GPO
  13. INT iDescID; // res id for page description
  14. INT iDlgID; // res id for dlg template
  15. INT iImage; // index into image strip
  16. LPSTR pszName; // pointer to name string
  17. LPSTR pszNamePref; // pointer to name string for preference GPO
  18. LPSTR pszDesc; // poitner to description string
  19. DLGPROC pfnDlgProc; // pointer to dlgproc
  20. LPCSTR pcszHelpTopic; // pointer to help htm file in chm file
  21. } RESULTITEMA, *LPRESULTITEMA;
  22. typedef struct _RESULTITEMW
  23. {
  24. DWORD dwNameSpaceItem; // index in g_NameSpace array
  25. INT iNameID; // res id for page name
  26. INT iNamePrefID; // res id for page name for preference GPO
  27. INT iDescID; // res id for page description
  28. INT iDlgID; // res id for dlg template
  29. INT iImage; // index into image strip
  30. LPWSTR pszName; // pointer to name string
  31. LPWSTR pszNamePref; // pointer to name string for preference GPO
  32. LPWSTR pszDesc; // poitner to description string
  33. DLGPROC pfnDlgProc; // pointer to dlgproc
  34. LPCWSTR pcszHelpTopic; // pointer to help htm file in chm file
  35. } RESULTITEMW, *LPRESULTITEMW;
  36. #ifdef UNICODE
  37. #define RESULTITEM RESULTITEMW
  38. #define LPRESULTITEM LPRESULTITEMW
  39. #else
  40. #define RESULTITEM RESULTITEMA
  41. #define LPRESULTITEM LPRESULTITEMA
  42. #endif
  43. #endif // _IEAKSIE_H_