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

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

?? ios.h

?? C標準庫源代碼
?? 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  /* _MSC_VER > 1000 */

#ifdef __cplusplus

#ifndef _INC_IOS
#define _INC_IOS

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

#ifndef _CRTBLD
/* This version of the header files is NOT for user programs.
 * It is intended for use when building the C runtimes ONLY.
 * The version intended for public use will not have this message.
 */
#error ERROR: Use of C runtime library internal header file.
#endif  /* _CRTBLD */

#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 CRTDLL
#define _CRTIMP __declspec(dllexport)
#else  /* CRTDLL */
#ifdef _DLL
#define _CRTIMP __declspec(dllimport)
#else  /* _DLL */
#define _CRTIMP
#endif  /* _DLL */
#endif  /* CRTDLL */
#endif  /* _CRTIMP */

#ifndef _INTERNAL_IFSTRIP_
/* Define _CRTIMP1 */

#ifndef _CRTIMP1
#ifdef CRTDLL1
#define _CRTIMP1 __declspec(dllexport)
#else  /* CRTDLL1 */
#define _CRTIMP1 _CRTIMP
#endif  /* CRTDLL1 */
#endif  /* _CRTIMP1 */
#endif  /* _INTERNAL_IFSTRIP_ */

#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" {
#ifndef _INTERNAL_IFSTRIP_
void __cdecl _mtlockinit(_PCRT_CRITICAL_SECTION);
void __cdecl _mtlockterm(_PCRT_CRITICAL_SECTION);
#endif  /* _INTERNAL_IFSTRIP_ */
_CRTIMP1 void __cdecl _mtlock(_PCRT_CRITICAL_SECTION);
_CRTIMP1 void __cdecl _mtunlock(_PCRT_CRITICAL_SECTION);
}

#endif  /* _MT */

#ifndef NULL
#define NULL    0
#endif  /* NULL */

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

#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 _CRTIMP1 streambuf;
class _CRTIMP1 ostream;

class _CRTIMP1 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  /* _MT */
    void __cdecl lock() { }
    void __cdecl unlock() { }
    void __cdecl lockbuf() { }
    void __cdecl unlockbuf() { }
#endif  /* _MT */

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  /* _MT */
    static void lockc() { }
    static void unlockc() { }
#endif  /* _MT */

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  /* _MT */
    static long * x_statebuf;  // used by xalloc()
#endif  /* _MT */
};

#include <streamb.h>

inline _CRTIMP1 ios& __cdecl dec(ios& _strm) { _strm.setf(ios::dec,ios::basefield); return _strm; }
inline _CRTIMP1 ios& __cdecl hex(ios& _strm) { _strm.setf(ios::hex,ios::basefield); return _strm; }
inline _CRTIMP1 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  /* _MT */

#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一区二区三区免费野_久草精品视频
久久97超碰国产精品超碰| 亚洲欧洲日韩女同| 日韩高清在线不卡| 欧美tickling挠脚心丨vk| 久久99蜜桃精品| 成人免费在线播放视频| 91黄色免费版| 久久99久久精品欧美| 亚洲婷婷综合久久一本伊一区| 日本韩国欧美国产| 国产综合久久久久久鬼色| 亚洲色图欧美偷拍| 午夜精品一区二区三区电影天堂| 国产成人综合亚洲网站| 免费xxxx性欧美18vr| 日本不卡一二三区黄网| 日本不卡一区二区三区高清视频| 午夜日韩在线电影| 免费在线成人网| 蜜臀a∨国产成人精品| 91片黄在线观看| 风流少妇一区二区| 久久疯狂做爰流白浆xx| 日韩国产一区二| 日韩电影免费在线观看网站| 一区二区三区欧美在线观看| 中文字幕免费一区| 中文字幕乱码一区二区免费| 精品成人免费观看| 国产欧美一区二区精品性色| 日本一区二区三区四区在线视频| 日韩精品一区二区三区视频播放 | 5858s免费视频成人| 欧美视频一区二| 777午夜精品免费视频| 国产精品中文字幕一区二区三区| 欧美日韩精品久久久| 亚洲一区二区三区自拍| 成人动漫视频在线| 国产三级一区二区| 久久国产婷婷国产香蕉| 欧美日韩另类国产亚洲欧美一级| 国产精品久久久久天堂| 国内外成人在线| 欧美一区二区三区免费在线看| 亚洲欧美综合网| a美女胸又www黄视频久久| 中文字幕久久午夜不卡| 狠狠色伊人亚洲综合成人| 日韩一区二区高清| 久久97超碰国产精品超碰| 日韩一区二区免费视频| 免费看欧美美女黄的网站| 欧美一区二区日韩| 奇米精品一区二区三区在线观看一| 欧美视频在线不卡| 美女视频网站久久| 久久精品一区四区| 色综合久久精品| 国产一区二区三区在线观看精品| 国产.精品.日韩.另类.中文.在线.播放| 成人免费看的视频| 国产亚洲一区二区三区在线观看| 免费久久99精品国产| 91精品国产品国语在线不卡| 中文字幕色av一区二区三区| 国产精品1区二区.| 自拍偷在线精品自拍偷无码专区| 国产乱码一区二区三区| 26uuu国产在线精品一区二区| 美日韩一区二区三区| 日本一区二区视频在线| 国产sm精品调教视频网站| 亚洲女爱视频在线| 在线播放日韩导航| 国产老妇另类xxxxx| 亚洲天堂2014| 精品三级在线看| 91久久精品一区二区| 国产精品一品二品| 国产香蕉久久精品综合网| 欧美日韩电影一区| 99国产精品一区| 黄一区二区三区| 天天射综合影视| 亚洲天堂a在线| www激情久久| 亚洲精品成人天堂一二三| 日韩欧美一区二区久久婷婷| 91色在线porny| 韩国在线一区二区| 欧美激情一二三区| 色哟哟国产精品| 午夜精品福利久久久| 日韩一级大片在线| 日本v片在线高清不卡在线观看| 日韩你懂的在线观看| 国产馆精品极品| 亚洲v日本v欧美v久久精品| 欧美裸体一区二区三区| 国产福利精品导航| 五月激情六月综合| 国产精品国产三级国产| 5月丁香婷婷综合| 色欧美片视频在线观看| 精品综合久久久久久8888| 中文字幕中文字幕一区二区| 这里是久久伊人| 欧洲国内综合视频| 成人精品免费看| 国产资源在线一区| 首页亚洲欧美制服丝腿| 亚洲制服丝袜一区| 国产精品精品国产色婷婷| 久久众筹精品私拍模特| 91精品国产免费久久综合| 99久久免费视频.com| 国产成人8x视频一区二区| 蜜臀国产一区二区三区在线播放| 亚洲国产精品综合小说图片区| 国产欧美精品一区二区三区四区| 日韩欧美一区在线观看| 91精品福利在线一区二区三区| 成人av午夜影院| 成人性生交大片免费看在线播放| 国产传媒欧美日韩成人| 激情六月婷婷久久| 国产麻豆精品久久一二三| 亚洲国产视频直播| 国产精品福利一区二区三区| 国产精品欧美一级免费| 亚洲欧洲日韩女同| 午夜久久久久久久久久一区二区| 亚洲一级在线观看| 人人精品人人爱| 久久99精品久久久久婷婷| 久久99久久精品欧美| 成人一区二区三区中文字幕| 97精品电影院| 欧美不卡视频一区| ㊣最新国产の精品bt伙计久久| 性做久久久久久免费观看| 久久99精品久久久久久久久久久久| 国产乱码精品1区2区3区| 欧洲精品一区二区三区在线观看| 日韩欧美亚洲国产另类| 亚洲欧美一区二区在线观看| 麻豆国产精品一区二区三区| 99久久综合色| 日韩欧美电影一区| 亚洲乱码日产精品bd| 成人av免费在线观看| 日韩欧美久久久| 亚洲123区在线观看| 丰满少妇在线播放bd日韩电影| 欧美夫妻性生活| 亚洲一区二区成人在线观看| 成人理论电影网| 欧美成人三级在线| 乱中年女人伦av一区二区| 欧美视频在线一区二区三区 | 蜜臀久久99精品久久久久宅男| 99精品欧美一区二区三区综合在线| 欧美肥妇free| 久久精品国产亚洲a| 制服丝袜在线91| 蜜桃91丨九色丨蝌蚪91桃色| 91麻豆精品国产91| 久久99精品国产| 欧美极品aⅴ影院| 成人蜜臀av电影| 亚洲精品美腿丝袜| 67194成人在线观看| 国内精品视频一区二区三区八戒 | 在线观看91av| 久久精品国产亚洲a| 国产免费成人在线视频| 色综合天天综合给合国产| 一区二区三区精品| 7777精品伊人久久久大香线蕉最新版| 日韩不卡一二三区| 久久久久久久网| 欧美少妇bbb| 国产成人精品一区二| 一区二区三区成人| 2020国产精品| 欧美日韩视频在线观看一区二区三区| 天天综合网 天天综合色| 中文字幕av一区二区三区| 欧美日韩国产高清一区二区 | 日韩和欧美一区二区三区| 久久久久久免费毛片精品| 色婷婷久久99综合精品jk白丝| 免费av网站大全久久| 亚洲一卡二卡三卡四卡无卡久久| 精品国产a毛片| 日韩精品专区在线影院重磅| 在线视频欧美区| 色婷婷精品大在线视频| 不卡的看片网站|