ltype.h

来自「AutoCAD DWG-file viewer」· C头文件 代码 · 共 29 行

H
29
字号
/****************************************************************/
/*			COPYRIGHT NOTICE			*/
/*			----------------			*/
/*  All software in this listing remain the strict copyright	*/
/*  of Ilija Kovacevic and cannot be copied or used in any way	*/
/*  except by written permission of Ilija Kovacevic.		*/
/*								*/
/*	Copyright (c) 1992 Ilija Kovacevic			*/
/*	www.kov.com   email ilija@kov.com			*/
/****************************************************************/

typedef struct
	{
	char name[ 0x20 ];
	UINT8 flags;
	char description[ 0x30 ];
	UINT8 alignment;
	UINT8 number_of_dashes;
	DOUBLE length;
	DOUBLE dash[ 12 ];
	} AcadLineType;

void AcadLineType__read( AcadLineType *me );
void AcadLineType__write( AcadLineType *me );
void AcadLineType__dxfout( AcadLineType *me );
void AcadLineType__dump_to_debug_file( AcadLineType *me );
AcadLineType *AcadLineType__create( void );
void AcadLineType__delete( AcadLineType *me );

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?