fileio.h
来自「AutoCAD DWG-file viewer」· C头文件 代码 · 共 30 行
H
30 行
/****************************************************************/
/* 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 */
/****************************************************************/
void read_in_file( void );
void file_seek( INT32 position );
void get_DOUBLE( DOUBLE *a );
void get_INT16( INT16 *a );
void get_INT32( INT32 *a );
void get_UINT8( UINT8 *a );
void get_array( void *a, int length );
void put_array( char *buffer, int size );
void put_INT16( INT16 x );
void put_INT32( INT32 x );
void put_UINT8( UINT8 x );
void put_DOUBLE( DOUBLE x );
#ifdef BIG_ENDIAN
void DOUBLE_reverse( DOUBLE *number );
void INT16_reverse( INT16 *number );
void INT32_reverse( INT32 *number );
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?