亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ios.h

?? vc6.0完整版
?? H
字號:
/***
*ios.h - definitions/declarations for the ios class.
*
*       Copyright (c) 1990-1997, Microsoft Corporation.  All rights reserved.
*
*Purpose:
*       This file defines the classes, values, macros, and functions
*       used by the ios class.
*       [AT&T C++]
*
*       [Public]
*
****/

#if     _MSC_VER > 1000
#pragma once
#endif

#ifdef  __cplusplus

#ifndef _INC_IOS
#define _INC_IOS

#if     !defined(_WIN32) && !defined(_MAC)
#error ERROR: Only Mac or Win32 targets supported!
#endif


#ifdef  _MSC_VER
// Currently, all MS C compilers for Win32 platforms default to 8 byte
// alignment.
#pragma pack(push,8)

#include <useoldio.h>

#endif  // _MSC_VER

/* Define _CRTIMP */

#ifndef _CRTIMP
#ifdef  _DLL
#define _CRTIMP __declspec(dllimport)
#else   /* ndef _DLL */
#define _CRTIMP
#endif  /* _DLL */
#endif  /* _CRTIMP */


#ifdef  _MT

typedef struct __CRT_LIST_ENTRY {
   struct __CRT_LIST_ENTRY *Flink;
   struct __CRT_LIST_ENTRY *Blink;
} _CRT_LIST_ENTRY;

typedef struct _CRT_CRITICAL_SECTION_DEBUG {
    unsigned short Type;
    unsigned short CreatorBackTraceIndex;
    struct _CRT_CRITICAL_SECTION *CriticalSection;
    _CRT_LIST_ENTRY ProcessLocksList;
    unsigned long EntryCount;
    unsigned long ContentionCount;
    unsigned long Depth;
    void * OwnerBackTrace[ 5 ];
} _CRT_CRITICAL_SECTION_DEBUG, *_PCRT_CRITICAL_SECTION_DEBUG;

typedef struct _CRT_CRITICAL_SECTION {
    _PCRT_CRITICAL_SECTION_DEBUG DebugInfo;

    //
    //  The following three fields control entering and exiting the critical
    //  section for the resource
    //

    long LockCount;
    long RecursionCount;
    void * OwningThread;        // from the thread's ClientId->UniqueThread
    void * LockSemaphore;
    unsigned long Reserved;
} _CRT_CRITICAL_SECTION, *_PCRT_CRITICAL_SECTION;

extern "C" {
_CRTIMP void __cdecl _mtlock(_PCRT_CRITICAL_SECTION);
_CRTIMP void __cdecl _mtunlock(_PCRT_CRITICAL_SECTION);
}

#endif  /* _MT */

#ifndef NULL
#define NULL    0
#endif

#ifndef EOF
#define EOF     (-1)
#endif

#ifdef  _MSC_VER
// C4514: "unreferenced inline function has been removed"
#pragma warning(disable:4514) // disable C4514 warning
// #pragma warning(default:4514)        // use this to reenable, if desired
#endif  // _MSC_VER

class _CRTIMP streambuf;
class _CRTIMP ostream;

class _CRTIMP ios {

public:
    enum io_state {  goodbit = 0x00,
                     eofbit  = 0x01,
                     failbit = 0x02,
                     badbit  = 0x04 };

    enum open_mode { in        = 0x01,
                     out       = 0x02,
                     ate       = 0x04,
                     app       = 0x08,
                     trunc     = 0x10,
                     nocreate  = 0x20,
                     noreplace = 0x40,
                     binary    = 0x80 };

    enum seek_dir { beg=0, cur=1, end=2 };

    enum {  skipws     = 0x0001,
            left       = 0x0002,
            right      = 0x0004,
            internal   = 0x0008,
            dec        = 0x0010,
            oct        = 0x0020,
            hex        = 0x0040,
            showbase   = 0x0080,
            showpoint  = 0x0100,
            uppercase  = 0x0200,
            showpos    = 0x0400,
            scientific = 0x0800,
            fixed      = 0x1000,
            unitbuf    = 0x2000,
            stdio      = 0x4000
                                 };

    static const long basefield;        // dec | oct | hex
    static const long adjustfield;      // left | right | internal
    static const long floatfield;       // scientific | fixed

    ios(streambuf*);                    // differs from ANSI
    virtual ~ios();

    inline long flags() const;
    inline long flags(long _l);

    inline long setf(long _f,long _m);
    inline long setf(long _l);
    inline long unsetf(long _l);

    inline int width() const;
    inline int width(int _i);

    inline ostream* tie(ostream* _os);
    inline ostream* tie() const;

    inline char fill() const;
    inline char fill(char _c);

    inline int precision(int _i);
    inline int precision() const;

    inline int rdstate() const;
    inline void clear(int _i = 0);

//  inline operator void*() const;
    operator void *() const { if(state&(badbit|failbit) ) return 0; return (void *)this; }
    inline int operator!() const;

    inline int  good() const;
    inline int  eof() const;
    inline int  fail() const;
    inline int  bad() const;

    inline streambuf* rdbuf() const;

    inline long & iword(int) const;
    inline void * & pword(int) const;

    static long bitalloc();
    static int xalloc();
    static void sync_with_stdio();

#ifdef  _MT
    inline void __cdecl setlock();
    inline void __cdecl clrlock();
    void __cdecl lock() { if (LockFlg<0) _mtlock(lockptr()); };
    void __cdecl unlock() { if (LockFlg<0) _mtunlock(lockptr()); }
    inline void __cdecl lockbuf();
    inline void __cdecl unlockbuf();
#else
    void __cdecl lock() { }
    void __cdecl unlock() { }
    void __cdecl lockbuf() { }
    void __cdecl unlockbuf() { }
#endif

protected:
    ios();
    ios(const ios&);                    // treat as private
    ios& operator=(const ios&);
    void init(streambuf*);

    enum { skipping, tied };
    streambuf*  bp;

    int     state;
    int     ispecial;                   // not used
    int     ospecial;                   // not used
    int     isfx_special;               // not used
    int     osfx_special;               // not used
    int     x_delbuf;                   // if set, rdbuf() deleted by ~ios

    ostream* x_tie;
    long    x_flags;
    int     x_precision;
    char    x_fill;
    int     x_width;

    static void (*stdioflush)();        // not used

#ifdef  _MT
    static void lockc() { _mtlock(& x_lockc); }
    static void unlockc() { _mtunlock( & x_lockc); }
    _PCRT_CRITICAL_SECTION lockptr() { return & x_lock; }
#else
    static void lockc() { }
    static void unlockc() { }
#endif

public:
    int delbuf() const { return x_delbuf; }
    void    delbuf(int _i) { x_delbuf = _i; }

private:
    static long x_maxbit;
    static int x_curindex;
    static int sunk_with_stdio;         // make sure sync_with done only once
#ifdef  _MT
#define MAXINDEX 7
    static long x_statebuf[MAXINDEX+1];  // used by xalloc()
    static int fLockcInit;              // used to see if x_lockc initialized
    static _CRT_CRITICAL_SECTION x_lockc; // used to lock static (class) data members
    int LockFlg;                        // enable locking flag
    _CRT_CRITICAL_SECTION x_lock;       // used for multi-thread lock on object
#else
    static long * x_statebuf;  // used by xalloc()
#endif
};

#include <streamb.h>

inline _CRTIMP ios& __cdecl dec(ios& _strm) { _strm.setf(ios::dec,ios::basefield); return _strm; }
inline _CRTIMP ios& __cdecl hex(ios& _strm) { _strm.setf(ios::hex,ios::basefield); return _strm; }
inline _CRTIMP ios& __cdecl oct(ios& _strm) { _strm.setf(ios::oct,ios::basefield); return _strm; }

inline long ios::flags() const { return x_flags; }
inline long ios::flags(long _l){ long _lO; _lO = x_flags; x_flags = _l; return _lO; }

inline long ios::setf(long _l,long _m){ long _lO; lock(); _lO = x_flags; x_flags = (_l&_m) | (x_flags&(~_m)); unlock(); return _lO; }
inline long ios::setf(long _l){ long _lO; lock(); _lO = x_flags; x_flags |= _l; unlock(); return _lO; }
inline long ios::unsetf(long _l){ long _lO; lock(); _lO = x_flags; x_flags &= (~_l); unlock(); return _lO; }

inline int ios::width() const { return x_width; }
inline int ios::width(int _i){ int _iO; _iO = (int)x_width; x_width = _i; return _iO; }

inline ostream* ios::tie(ostream* _os){ ostream* _osO; _osO = x_tie; x_tie = _os; return _osO; }
inline ostream* ios::tie() const { return x_tie; }
inline char ios::fill() const { return x_fill; }
inline char ios::fill(char _c){ char _cO; _cO = x_fill; x_fill = _c; return _cO; }
inline int ios::precision(int _i){ int _iO; _iO = (int)x_precision; x_precision = _i; return _iO; }
inline int ios::precision() const { return x_precision; }

inline int ios::rdstate() const { return state; }

// inline ios::operator void *() const { if(state&(badbit|failbit) ) return 0; return (void *)this; }
inline int ios::operator!() const { return state&(badbit|failbit); }

inline int  ios::bad() const { return state & badbit; }
inline void ios::clear(int _i){ lock(); state = _i; unlock(); }
inline int  ios::eof() const { return state & eofbit; }
inline int  ios::fail() const { return state & (badbit | failbit); }
inline int  ios::good() const { return state == 0; }

inline streambuf* ios::rdbuf() const { return bp; }

inline long & ios::iword(int _i) const { return x_statebuf[_i] ; }
inline void * & ios::pword(int _i) const { return (void * &)x_statebuf[_i]; }

#ifdef  _MT
    inline void ios::setlock() { LockFlg--; if (bp) bp->setlock(); }
    inline void ios::clrlock() { if (LockFlg <= 0) LockFlg++; if (bp) bp->clrlock(); }
    inline void ios::lockbuf() { bp->lock(); }
    inline void ios::unlockbuf() { bp->unlock(); }
#endif

#ifdef  _MSC_VER
// Restore default packing
#pragma pack(pop)
#endif  // _MSC_VER

#endif  // _INC_IOS

#endif  /* __cplusplus */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色婷婷精品久久二区二区蜜臂av | 欧美日韩aaaaaa| 国产激情精品久久久第一区二区 | 精品国产乱码久久久久久老虎| 日本乱人伦一区| 99精品热视频| 91免费视频大全| 成人av电影在线| 床上的激情91.| aa级大片欧美| 99久久99久久久精品齐齐| av一本久道久久综合久久鬼色| 成人性生交大片免费看中文网站| 精品国产伦理网| 国产视频一区在线观看| 精品精品欲导航| 国产欧美视频在线观看| 亚洲视频在线一区| 97精品国产露脸对白| 成人av网站在线观看| 欧美专区日韩专区| 91精品国产91久久综合桃花| 欧美一区二区三区日韩视频| 久久国产尿小便嘘嘘| 国产美女一区二区| 91尤物视频在线观看| 欧美日韩不卡一区| 久久免费视频一区| 国产美女精品人人做人人爽| av亚洲精华国产精华精| 欧美日本在线看| 国产亚洲美州欧州综合国| 亚洲免费在线电影| 91精品国产黑色紧身裤美女| 久久免费的精品国产v∧| 亚洲三级在线观看| 日本中文字幕一区| 国产一区二区三区| 欧洲精品一区二区| 精品日韩成人av| 亚洲女性喷水在线观看一区| 蜜桃视频一区二区三区| 成人在线一区二区三区| 亚洲国产日韩一级| 韩国欧美一区二区| 色噜噜久久综合| 精品国免费一区二区三区| 亚洲精品视频免费观看| 国产制服丝袜一区| 欧美色图免费看| 亚洲国产精华液网站w | 日韩精品免费视频人成| 国产精品99久久久久久有的能看| 亚洲乱码国产乱码精品精的特点 | 欧美日韩综合色| 国产精品白丝av| 欧美一区二区国产| 樱桃视频在线观看一区| 成人少妇影院yyyy| 久久蜜桃av一区二区天堂 | 国产日韩欧美精品综合| 日韩综合一区二区| 欧美伊人久久大香线蕉综合69| 日本一区二区综合亚洲| 日韩国产一二三区| 欧美日韩精品一二三区| 亚洲欧美电影院| 波多野洁衣一区| 亚洲精品一区二区三区香蕉| 一区二区三区四区不卡在线| eeuss鲁一区二区三区| 欧美国产日韩精品免费观看| 国内精品写真在线观看| 欧美成人精品高清在线播放 | 精品一区精品二区高清| 91.麻豆视频| 日韩电影在线看| 欧美一区二区黄| 久久精品国产第一区二区三区| 91精品国产综合久久久蜜臀图片| 色综合网站在线| 亚洲精品写真福利| 91黄色激情网站| 亚洲国产精品久久久久秋霞影院 | 亚洲一区二区三区自拍| 日本伦理一区二区| 亚洲卡通欧美制服中文| 91在线观看一区二区| 最新国产の精品合集bt伙计| 高清不卡一区二区在线| 国产精品国产三级国产普通话蜜臀| 国产精品一二三区| 国产精品美女一区二区| 91色视频在线| 欧美三区免费完整视频在线观看| 亚洲成人你懂的| 欧美三电影在线| 六月丁香婷婷久久| 中文久久乱码一区二区| 99国产精品久久久久久久久久| 亚洲男人的天堂在线观看| 欧美日韩综合在线免费观看| 蜜乳av一区二区| 亚洲国产精品成人综合 | 亚洲男人天堂av网| 欧美一区欧美二区| 国产一区二区三区四区五区入口| 久久丝袜美腿综合| 色丁香久综合在线久综合在线观看| 三级久久三级久久久| 久久婷婷国产综合精品青草| 成人国产在线观看| 天堂一区二区在线免费观看| 国产欧美一区在线| 欧美日韩成人高清| 成人理论电影网| 日本欧美一区二区| 国产精品天美传媒沈樵| 欧美婷婷六月丁香综合色| 久久av资源网| 夜夜嗨av一区二区三区| 国产夜色精品一区二区av| 色狠狠综合天天综合综合| 欧美成人免费网站| 欧美日韩中字一区| eeuss鲁片一区二区三区在线观看| 美女视频第一区二区三区免费观看网站| www国产精品av| 欧美日韩一区视频| 久久综合狠狠综合久久综合88| 成人a区在线观看| 国产蜜臀av在线一区二区三区| 欧美精品vⅰdeose4hd| 成人中文字幕合集| 日韩电影在线一区二区| 99精品热视频| 成人三级伦理片| 精品一区二区三区免费视频| 亚洲欧洲www| 精品国产乱码久久久久久免费| 91精品国产福利| 色吧成人激情小说| 久久婷婷色综合| 91丨porny丨最新| 成人av在线一区二区| 日韩国产欧美在线观看| 国产精品乱码久久久久久| 精品理论电影在线| 日本成人超碰在线观看| 亚洲日本一区二区三区| 久久中文娱乐网| 91精品国产免费久久综合| 欧美日韩一区小说| 欧洲亚洲精品在线| 91天堂素人约啪| 丝袜美腿亚洲综合| ...av二区三区久久精品| 精品国产1区2区3区| 91麻豆精品国产91久久久资源速度| 在线观看亚洲专区| 成人精品视频网站| 欧美国产1区2区| 26uuu精品一区二区在线观看| 精品日产卡一卡二卡麻豆| 91精品国产综合久久久久久漫画| 一本色道a无线码一区v| av亚洲精华国产精华| 久久亚洲综合色一区二区三区| 欧美日韩中字一区| 欧美日韩一区二区三区四区五区| 色香色香欲天天天影视综合网| 欧美色视频一区| 欧美日韩国产精品自在自线| 欧美亚洲丝袜传媒另类| 欧美综合色免费| 欧美一级二级三级乱码| 日韩电影免费在线看| 日韩福利视频网| 亚洲精品免费在线播放| 亚洲一二三专区| 亚洲成人av资源| 天堂影院一区二区| 蜜桃一区二区三区在线| 国产精品人妖ts系列视频| 中文字幕的久久| 国产精品国产三级国产普通话蜜臀| 久久久精品欧美丰满| 亚洲人成网站色在线观看| 亚洲女子a中天字幕| 亚洲成人av资源| 色哟哟在线观看一区二区三区| 欧美夫妻性生活| 欧美大片一区二区| 国产日韩欧美综合在线| 国产日产精品1区| 香蕉成人啪国产精品视频综合网| 日韩成人精品视频| 国产成人精品1024| 欧美日韩亚洲高清一区二区| 欧美变态口味重另类|