Skip to content

Commit

Permalink
export event flags
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoqiangwang committed Jun 5, 2015
1 parent 290efa4 commit a88a0ac
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pcaspy/casdef.i
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@
%include "errMdef.i"
%include "gdd.i"

#define DBE_VALUE (1<<0)
#define DBE_ARCHIVE (1<<1)
#define DBE_LOG DBE_ARCHIVE
#define DBE_ALARM (1<<2)
#define DBE_PROPERTY (1<<3)

%include "cstring.i"

%defaultdtor caNetAddr;
Expand Down Expand Up @@ -112,7 +118,7 @@ public:
virtual ~PV();

caStatus read (const casCtx &ctx, gdd &protoIn);
caStatus postEvent (gdd &value);
caStatus postEvent (int mask, gdd &value);

virtual caStatus getValue(gdd &value);
virtual caStatus getPrecision(gdd &prec);
Expand Down

0 comments on commit a88a0ac

Please sign in to comment.