/* ** File name: PRINT_DEF.H ** ** Copyright (c) 1991, by ** Process Software Corporation ** Framingham, Massachusetts */ typedef unsigned int longw; typedef unsigned short word; typedef unsigned char byte; /* ** These macros test the VMS status code argument s (a longword) for success or ** failure. An odd number indicates success. */ #define _error( s) if( !((s) & 1)) #define _success( s) if( (s) & 1) /* end file PRINT_DEF.H */