Data Definition Language (DDL) Reference Manual
DDL Compiler Commands
Data Definition Language (DDL) Reference Manual—529431-004
9-42
DDL
DDL
The [NO]DDL command:
•
Opens [closes] a DDL schema file
•
Starts [stops] writing subsequent DDL object definitions to the open DDL schema
file
Default: NODDL
DDL Output (C Code)
/* SCHEMA PRODUCED DATE - TIME :10/13/1995 13:23:16 */
#pragma section a
/* Definition A created on 10/13/1995 at 13:23 */
#pragma fieldalign shared8 __a
typedef struct __a
{
char b;
char c;
char d;
char filler_0;
} a_def;
#pragma section e
/* Definition E created on 10/13/1995 at 13:23 */
typedef char e_def;
#pragma section f
/* Definition F created on 10/13/1995 at 13:23 */
#pragma fieldalign shared8 __f
typedef struct __f
{
short g;
struct
{
e_def i;
char filler_0;
a_def j;
} h;
char k;
char filler_1;
short l;
} f_def;
{ DDL [ ddl-source-file [ ! ] ] }
{ NODDL }
Example 9-19. C_MATCH_HISTORIC_TAL Command (page 2 of 2)