shx.c
来自「AutoCAD DWG-file viewer」· C语言 代码 · 共 46 行
C
46 行
/****************************************************************/
/* 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 */
/****************************************************************/
#include "dwgin.h"
PUBLIC char *get_shape_name( int name ,int index )
{
name = name; /* avoid compiler warning */
index = index; /* avoid compiler warning */
return( "" );
}
PUBLIC boolean upsidedown_font( int index )
{
index = index; /* avoid compiler warning */
return( false );
}
PUBLIC boolean backward_font( int index )
{
index = index; /* avoid compiler warning */
return( false );
}
PUBLIC boolean vertical_font( int index )
{
index = index; /* avoid compiler warning */
return( false );
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?