/*************************************************************************** * * Copyright (c) 1997, 1998 Timpanogas Research Group, Inc. All Rights * Reserved. * * This program is an unpublished work of TRG, Inc. and contains * trade secrets and other proprietary information. Unauthorized * use, copying, disclosure, or distribution of this file without the * consent of TRG, Inc. can subject the offender to severe criminal * and/or civil penalities. * * * AUTHOR : Jeff V. Merkey * FILE : LINE.H * DESCRIP : SLD Line Number Support for MANOS v1.0 * DATE : August 24, 1998 * ***************************************************************************/ #include "types.h" typedef struct _NAME_CROSS_INDEX { BYTE *Name; LONG Index; } NAME_CROSS_INDEX; typedef struct _SOURCE_LINE_INFO { struct _SOURCE_LINE_INFO *next; struct _SOURCE_LINE_INFO *prior; BYTE *ModuleName; LONG SourcePresent; BYTE *SourceLine; LONG Offset; LONG LineNumber; LONG Segment; LONG ModuleIndex; LONG *LineTable; LONG LineAddress; LONG FileIndex; LONG SourceIndex; } SOURCE_LINE_INFO;