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.

18 lines
545 B

  1. #ifndef _HTMLPRIV_H_
  2. #define _HTMLPRIV_H_
  3. // CGID_WebBrowserPriv: {ED016940-BD5B-11cf-BA4E-00C04FD70816}
  4. DEFINE_GUID(CGID_IWebBrowserPriv,0xED016940L,0xBD5B,0x11cf,0xBA,0x4E,0x00,0xC0,0x4F,0xD7,0x08,0x16);
  5. // CommandTarget ids. for private menu driving
  6. enum
  7. {
  8. HTMLID_FIND = 1,
  9. HTMLID_VIEWSOURCE = 2,
  10. HTMLID_OPTIONS = 3,
  11. HTMLID_CCALLBACK = 4, // callback to arbitrary C func
  12. HTMLID_MENUEXEC = 5, // do menu command
  13. HTMLID_MENUQS = 6, // query menu commands
  14. };
  15. #endif //_HTMLPRIV_H_