Specifies the verbs to be registered for an application.
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID
\Verb
\1 = <verb1>
\2 = <verb2>
\3 =
See IOleObject::DoVerb for general information about verbs, descriptions of COM predefined verbs, and positive and negative verbs, plus other material.
Verbs must be numbered consecutively. The first value after the verb string describes how the verb is appended by an AppendMenu function call.
The second value indicates whether the verb will dirty the object. It also indicates whether the verb should appear in the menu, as defined by COMVERBATTRIB enumeration, used by the COMVERB structure.
For still more information, see IOleObject::EnumVerbs and OleRegEnumVerbs.
Following are two example entries:
Verb 0: "Edit", MF_UNCHECKED | MF_ENABLED, no COMVERATTRIB flags:
HKEY_CLASSES_ROOT\CLSID\{00000402-0000-0000-C000-000000000046}
\Verb\0 = &Edit,0,0
Verb 1: "Open", MF_UNCHECKED | MF_ENABLED, no COMVERATTRIB flags:
HKEY_CLASSES_ROOT\CLSID\{00000402-0000-0000-C000-000000000046}
\Verb\1 = &Open,0,0
IOleObject::EnumVerbs, OleRegEnumVerbs, AppendMenu, COMVERB, COMVERBATTRIB