1 /*  START OF:       dm_tm_ops.incl.pl1            */
 2 
 3 /* Transaction Manager operation codes */
 4 
 5 /* Written 08/04/82 Steve Herbst */
 6 
 7 
 8 dcl (DONE_OPERATION init (0),
 9      BEGIN_OPERATION init (1),
10      COMMIT_OPERATION init (2),
11      ABORT_OPERATION init (3),
12      ROLLBACK_OPERATION init (4),
13      ADJUST_OPERATION init (5)) fixed bin int static options (constant);
14 
15 
16 /*  END OF:         dm_tm_ops.incl.pl1            */