Issue137

Title layoutreturn_type4 definition missing from main document
Priority required Status editing
Superseder Nosy List spencer.shepler
Assigned To spencer.shepler Topics stage0-req

Created on 2006-10-23.16:39:33 by spencer.shepler, last changed 2006-12-08.12:21:02 by dnoveck.

Messages
msg439 (view) Author: spencer.shepler Date: 2006-10-23.16:39:33
in between drafts 06 and 07 the following:

enum layoutreturn_type4 {
        LAYOUTRETURN_FILE = 1,
        LAYOUTRETURN_FSID = 2,
        LAYOUTRETURN_ALL  = 3
};

struct layoutreturn_file4 {
        offset4         lrf_offset;
        length4         lrf_length;
};


union layoutreturn4 switch(layoutreturn_type4 returntype) {
        case LAYOUTRETURN_FILE:
                layoutreturn_file4      lr_layout;
        default:
                void;
};


Definitions are missing from the LAYOUTRETURN 
operation definition.

Part of the dot-x rework for building the documents
is the source of the problem; just add it back in...
History
Date User Action Args
2006-12-08 12:21:02dnovecksettopic: + stage0-req
2006-10-23 16:39:33spencer.sheplercreate