summaryrefslogtreecommitdiff
path: root/Source/DafnyMenu/PkgCmdID.cs
blob: 0cf3869e0ed338cc250e1ea3a2f16dedf6491861 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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 int cmdidToggleSnapshotVerification = 0x103;
  };
}