Share

AcRx Structure

C++

struct AcRx {
  enum DictIterType {
    kDictSorted = 0,
    kDictCollated = 1
  };
  enum Ordering {
    kLessThan = -1,
    kEqual = 0,
    kGreaterThan = 1,
    kNotOrderable = 2
  };
  enum AppMsgCode {
    kNullMsg = 0,
    kInitAppMsg = 1,
    kUnloadAppMsg = 2,
    kLoadDwgMsg = 3,
    kUnloadDwgMsg = 4,
    kInvkSubrMsg = 5,
    kCfgMsg = 6,
    kEndMsg = 7,
    kQuitMsg = 8,
    kSaveMsg = 9,
    kDependencyMsg = 10,
    kNoDependencyMsg = 11,
    kOleUnloadAppMsg = 12,
    kPreQuitMsg = 13,
    kInitDialogMsg = 14,
    kEndDialogMsg = 15,
    kSuspendMsg = 16,
    kInitTabGroupMsg = 17,
    kEndTabGroupMsg = 18
  };
  enum class AppRetCode {
    kRetOK = 0,
    kRetUnloadApp = 2,
    kRetError = 3
  };
  constexpr auto kRetOK = AppRetCode::kRetOK;
  constexpr auto kRetError = AppRetCode::kRetError;
};

File

rxdefs.h

Members

Members Description
kRetOK OK was returned.
kRetUnloadApp For internal use only. Unload application was returned.
kRetError Error was returned.

Description

A namespace-like struct for typedef and enum scoping.

Links

Enumerations

Was this information helpful?