summaryrefslogtreecommitdiff
path: root/Source/DafnyMenu/PkgCmdID.cs
blob: f5905ea3cd4a26a5373dcf20f09db227669a299c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// PkgCmdID.cs
// MUST match PkgCmdID.h
using System;

namespace DafnyLanguage.DafnyMenu
{
  static class PkgCmdIDList
  {
    public const uint cmdidCompile = 0x100;
    public const uint cmdidRunVerifier = 0x101;
    public const uint cmdidStopVerifier = 0x102;
    public const uint cmdidMenu = 0x1021;
    public static uint cmdidToggleSnapshotVerification = 0x103;
    public const uint cmdidShowErrorModel = 0x104;
  };
}