wlibio.h

来自「开放源码的编译器open watcom 1.6.0版的源代码」· C头文件 代码 · 共 68 行

H
68
字号
/****************************************************************************
*
*                            Open Watcom Project
*
*    Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
*  ========================================================================
*
*    This file contains Original Code and/or Modifications of Original
*    Code as defined in and that are subject to the Sybase Open Watcom
*    Public License version 1.0 (the 'License'). You may not use this file
*    except in compliance with the License. BY USING THIS FILE YOU AGREE TO
*    ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
*    provided with the Original Code and Modifications, and is also
*    available at www.sybase.com/developer/opensource.
*
*    The Original Code and all software distributed under the License are
*    distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
*    EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
*    ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
*    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
*    NON-INFRINGEMENT. Please see the License for the specific language
*    governing rights and limitations under the License.
*
*  ========================================================================
*
* Description:  Internal wlib I/O interface.
*
****************************************************************************/


typedef unsigned_32     file_offset;

#define READ_FILE_BUFFER_SIZE   2048
#define WRITE_FILE_BUFFER_SIZE  32768

typedef struct io_struct *libfile;
struct io_struct {
    char            *name;
    libfile         next;
    libfile         prev;
    int             io;
    unsigned_16     access;
    unsigned_16     buf_size;
    unsigned_16     buf_pos;
    char            buffer[1];
};

#define LIBOPEN_BINARY_READ     ( O_BINARY | O_RDONLY )
#define LIBOPEN_BINARY_WRITE    ( O_BINARY | O_WRONLY | O_CREAT )

extern void InitLibIo( void  );
extern void ResetLibIo( void );
extern libfile LibOpen( char *name, int access );
extern file_offset LibRead( libfile io, void *buff, file_offset len );
extern void LibWrite( libfile io, void *buff, file_offset len );
extern void LibClose( libfile io );
extern void LibSeek( libfile io, long where, int whence );
extern file_offset LibTell( libfile io );
extern void LibReadError( libfile io );
extern void LibWriteError( libfile io );

#ifdef __UNIX__
#define FNCMP strcmp
#else
#define FNCMP stricmp
#endif

⌨️ 快捷键说明

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