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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? ios.h

?? C標(biāo)準(zhǔn)庫(kù)源代碼,能提高對(duì)C的理解,不錯(cuò)的哦
?? H
字號(hào):
/***
*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 */

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产欧美日韩麻豆91| 日韩国产欧美三级| 国产精品一区二区三区网站| 日韩视频免费观看高清完整版在线观看| 亚洲成a人v欧美综合天堂| 欧亚一区二区三区| 视频在线在亚洲| 欧美r级电影在线观看| 国产一区三区三区| 国产精品国产三级国产专播品爱网| 不卡的av中国片| 一区二区三区精品久久久| 欧美猛男男办公室激情| 久久成人综合网| 国产精品每日更新在线播放网址| 一本大道av伊人久久综合| 日本欧美一区二区三区乱码| 日韩精品在线看片z| 久久精品国产亚洲a| 精品久久人人做人人爰| 国产91色综合久久免费分享| 亚洲日本韩国一区| 欧美一级二级三级乱码| 国产二区国产一区在线观看| 亚洲免费色视频| 日韩视频永久免费| 99在线精品观看| 麻豆精品在线看| 亚洲欧洲三级电影| 欧美一卡二卡三卡四卡| 9i看片成人免费高清| 日本大胆欧美人术艺术动态| 国产精品免费看片| 91精品国产91久久久久久最新毛片 | 国产日韩欧美激情| 视频一区二区国产| 久久综合九色综合欧美就去吻| 成人a免费在线看| 丝袜亚洲另类丝袜在线| 中文字幕 久热精品 视频在线| 在线观看欧美日本| 国产精品1区二区.| 丝袜美腿亚洲一区二区图片| 国产精品网曝门| 欧美一级高清片在线观看| 91视频91自| 国产在线观看一区二区| 亚洲成人免费影院| 中文字幕一区二区日韩精品绯色| 日韩一级免费观看| 欧美亚洲综合一区| 风间由美一区二区av101| 日韩—二三区免费观看av| 免费美女久久99| 精品成人免费观看| 欧美日韩午夜影院| www.欧美.com| 国产真实精品久久二三区| 亚洲第一在线综合网站| 日韩一区在线播放| 国产偷国产偷亚洲高清人白洁 | 99久久综合精品| 韩国精品免费视频| 日韩**一区毛片| 亚洲成人在线免费| 亚洲一区国产视频| 亚洲精品免费在线| 中文字幕在线观看不卡| www国产精品av| 日韩三级伦理片妻子的秘密按摩| 欧美日韩国产综合久久| 91黄色免费观看| 一本大道久久a久久精二百| 成人av综合一区| 粗大黑人巨茎大战欧美成人| 韩国女主播一区| 国产精品不卡在线| 午夜电影一区二区三区| 中文字幕一区日韩精品欧美| 久久综合九色综合久久久精品综合| 欧美男人的天堂一二区| 欧美亚州韩日在线看免费版国语版| 成人的网站免费观看| 高清不卡一区二区| 国产成人亚洲综合a∨婷婷| 国产精品资源在线看| 国产一区二区三区久久久| 极品尤物av久久免费看| 国产一区二区在线免费观看| 狠狠色丁香婷综合久久| 国产成a人无v码亚洲福利| 岛国精品在线播放| 97久久超碰国产精品| 色综合中文字幕国产| 成人一道本在线| av一本久道久久综合久久鬼色| 91啪亚洲精品| 精品视频在线看| 日韩欧美在线观看一区二区三区| 日韩精品一区二区三区在线观看| 91麻豆精品国产自产在线观看一区| 久久久久青草大香线综合精品| 国产拍欧美日韩视频二区| 欧美国产欧美综合| 亚洲日本va午夜在线影院| 一区二区欧美国产| 爽爽淫人综合网网站| 久久99精品久久久久久动态图| 国产精品影视在线| 99热这里都是精品| 欧美精品乱人伦久久久久久| 日韩精品中文字幕一区二区三区 | 26uuuu精品一区二区| 欧美激情一区二区三区在线| 一区二区三区在线视频免费| 人人超碰91尤物精品国产| 国产一区不卡视频| 在线免费亚洲电影| 337p粉嫩大胆噜噜噜噜噜91av| 国产精品女主播av| 偷窥少妇高潮呻吟av久久免费| 久久99国产精品久久99| 99久久久无码国产精品| 欧美精选一区二区| 国产精品私房写真福利视频| 午夜免费欧美电影| 成人在线视频首页| 欧美猛男男办公室激情| 日本一区二区三区四区在线视频| 亚洲午夜国产一区99re久久| 国产一区欧美二区| 欧美日韩免费观看一区二区三区| 国产亚洲精久久久久久| 亚洲国产欧美在线人成| 懂色av中文字幕一区二区三区| 欧美人与性动xxxx| 一区二区中文字幕在线| 激情国产一区二区| 欧美做爰猛烈大尺度电影无法无天| 久久综合五月天婷婷伊人| 亚洲午夜一区二区| 成人激情综合网站| 2021久久国产精品不只是精品| 夜夜嗨av一区二区三区网页| 高清成人免费视频| 日韩欧美亚洲国产另类| 亚洲午夜精品网| 91在线精品秘密一区二区| 亚洲欧美另类小说| 韩国欧美一区二区| 欧美一区二区观看视频| 亚洲午夜激情av| 91麻豆国产福利在线观看| 国产清纯在线一区二区www| 日本中文字幕不卡| 欧美日本国产视频| 亚洲国产乱码最新视频| 91国内精品野花午夜精品| 国产精品国产三级国产专播品爱网| 国产剧情在线观看一区二区| 日韩一区国产二区欧美三区| 亚洲国产wwwccc36天堂| 色菇凉天天综合网| 亚洲欧洲综合另类在线| av亚洲精华国产精华精| 国产精品理论在线观看| 国产99精品视频| 亚洲国产精品成人综合| 国产成人午夜视频| 国产午夜精品久久久久久久| 激情亚洲综合在线| 精品精品国产高清一毛片一天堂| 日本美女一区二区三区视频| 欧美一区二区三区在线观看| 丝袜美腿亚洲色图| 在线综合亚洲欧美在线视频| 日本欧美在线观看| 日韩欧美三级在线| 国产一区二区中文字幕| 久久精品在线观看| 成人一区二区视频| 亚洲欧洲日产国码二区| 色综合久久久网| 亚洲国产精品麻豆| 4438亚洲最大| 黄色资源网久久资源365| 国产午夜久久久久| 成人av网址在线观看| 亚洲欧美欧美一区二区三区| 欧美午夜精品久久久久久孕妇| 亚洲r级在线视频| 日韩欧美视频在线| 成人一级黄色片| 亚洲综合色区另类av| 欧美一区二区三区电影| 国产馆精品极品| 亚洲免费色视频| 日韩欧美一区中文| 成人午夜电影网站| 亚洲aaa精品|