I'm trying to add a context window to a HTML Context editor window in visual studio, I successfully retrieved the Code Window ID from the vshlids.h file, following guides on stackoverflow.
Guid={D309F791-903F-11D0-9EFC-00A0C911004F}
GuidID=4
CmdID=1037
Type=0x00000400
Flag=0x00000000
NameLoc=Code Window
#define IDM_VS_CTXT_CODEWIN 0x040D
But with the Html Context window I'm truly in the dark:
Guid={78F03954-2FB8-4087-8CE7-59D71710B3BB}
GuidID=353
CmdID=1
Type=0x00000400
Flag=0x00000000
NameLoc=Html Context
So I do know how to get the dialog showing window/menu data, I just can't find the ID for this particular one. Can anyone help me with getting the equivalent for the Html Context ID so I can add a menu item to it's context menu? Thanks!