home *** CD-ROM | disk | FTP | other *** search
- -------------------------------------------------------------------------------
- --
- -- THIS FILE AND ANY ASSOCIATED DOCUMENTATION IS FURNISHED "AS IS" WITHOUT
- -- WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
- -- TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
- -- PURPOSE. The user assumes the entire risk as to the accuracy and the
- -- use of this file.
- --
- -- Copyright (c) Intermetrics, Inc. 1995
- -- Royalty-free, unlimited, worldwide, non-exclusive use, modification,
- -- reproduction and further distribution of this file is permitted.
- --
- -------------------------------------------------------------------------------
-
- with win32;
-
- procedure error_rep_clause is
-
- type enum_anonymous9_t is ( -- rpcndr.h:943
- XLAT_SERVER, -- rpcndr.h:941
- XLAT_CLIENT -- rpcndr.h:943
- );
- subtype XLAT_SIDE is enum_anonymous9_t; -- rpcndr.h:943
- for enum_anonymous9_t'size use 32; -- rpcndr.h:943
- --for enum_anonymous9_t use ( -- rpcndr.h:943
- -- XLAT_SERVER => 1, -- rpcndr.h:941
- -- XLAT_CLIENT => 2 -- rpcndr.h:943
- --);
- -- type XLAT_SIDE is new enum_anonymous9_t; -- rpcndr.h:943
-
- type x is record
- a : Win32.BYTE;
- b : Win32.WORD;
- c : Win32.DWORD;
- end record;
- for x use record
- a at 0 range 0 .. 7;
- b at 0 range 8 .. 23;
- c at 3 range 0 .. 31;
- end record;
-
- y : x;
-
- begin
- y.a := 1;
- y.b := 2;
- y.c := 3;
-
-
- end error_rep_clause;
-