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

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

?? mtdll.h

?? C標準庫源代碼,能提高對C的理解,不錯的哦
?? H
字號:
/***
*mtdll.h - DLL/Multi-thread include
*
*       Copyright (c) 1987-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
*
*       [Internal]
*
****/

#if _MSC_VER > 1000
#pragma once
#endif  /* _MSC_VER > 1000 */

#ifndef _INC_MTDLL
#define _INC_MTDLL

#ifndef _CRTBLD
/*
 * This is an internal C runtime header file. It is used when building
 * the C runtimes only. It is not to be used as a public header file.
 */
#error ERROR: Use of C runtime library internal header file.
#endif  /* _CRTBLD */

#ifdef __cplusplus
extern "C" {
#endif  /* __cplusplus */

#include <cruntime.h>

/* 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 */


/* Define __cdecl for non-Microsoft compilers */

#if (!defined (_MSC_VER) && !defined (__cdecl))
#define __cdecl
#endif  /* (!defined (_MSC_VER) && !defined (__cdecl)) */


/*
 * Define the number of supported handles and streams. The definitions
 * here must exactly match those in internal.h (for _NHANDLE_) and stdio.h
 * (for _NSTREAM_).
 */

#ifdef _WIN32

#define _IOB_ENTRIES    20

#else  /* _WIN32 */

/*
 * Define the number of supported handles and streams. The definitions
 * here must exactly match those in internal.h (for _NHANDLE_) and stdio.h
 * (for _NSTREAM_).
 */

#ifdef CRTDLL
#define _NHANDLE_   512     /* *MUST* match the value under ifdef _DLL! */
#define _NSTREAM_   128     /* *MUST* match the value under ifdef _DLL! */
#else  /* CRTDLL */
#ifdef _DLL
#define _NHANDLE_   512
#define _NSTREAM_   128
#else  /* _DLL */
#ifdef _MT
#define _NHANDLE_   256
#define _NSTREAM_   40
#else  /* _MT */
#define _NHANDLE_   64
#define _NSTREAM_   20
#endif  /* _MT */
#endif  /* _DLL */
#endif  /* CRTDLL */

#endif  /* _WIN32 */

/* Lock symbols */

/* ---- do not change lock #1 without changing emulator ---- */
#define _SIGNAL_LOCK    1       /* lock for signal() & emulator SignalAddress */
                                /* emulator uses \math\include\mtdll.inc     */

#define _IOB_SCAN_LOCK  2       /* _iob[] table lock                */
#define _TMPNAM_LOCK    3       /* lock global tempnam variables    */
#define _INPUT_LOCK     4       /* lock for _input() routine        */
#define _OUTPUT_LOCK    5       /* lock for _output() routine       */
#define _CSCANF_LOCK    6       /* lock for _cscanf() routine       */
#define _CPRINTF_LOCK   7       /* lock for _cprintf() routine      */
#define _CONIO_LOCK     8       /* lock for conio routines          */
#define _HEAP_LOCK      9       /* lock for heap allocator routines */
/* #define _BHEAP_LOCK  10         Obsolete                         */
#define _TIME_LOCK      11      /* lock for time functions          */
#define _ENV_LOCK       12      /* lock for environment variables   */
#define _EXIT_LOCK1     13      /* lock #1 for exit code            */
/* #define _EXIT_LOCK2  14         Obsolete                         */
/* #define _THREADDATA_LOCK 15     Obsolete                         */
#define _POPEN_LOCK     16      /* lock for _popen/_pclose database */
#define _LOCKTAB_LOCK   17      /* lock to protect semaphore lock table */
#define _OSFHND_LOCK    18      /* lock to protect _osfhnd array    */
#define _SETLOCALE_LOCK 19      /* lock for locale handles, etc.    */
/* #define _LC_COLLATE_LOCK 20     Obsolete                         */
/* #define _LC_CTYPE_LOCK  21      Obsolete                         */
/* #define _LC_MONETARY_LOCK 22    Obsolete                         */
/* #define _LC_NUMERIC_LOCK 23     Obsolete                         */
/* #define _LC_TIME_LOCK   24      Obsolete                         */
#define _MB_CP_LOCK     25      /* lock for multibyte code page     */
#define _NLG_LOCK       26      /* lock for NLG notifications       */
#define _TYPEINFO_LOCK  27      /* lock for type_info access        */

#define _STREAM_LOCKS   28      /* Table of stream locks            */

#ifdef _WIN32
#define _LAST_STREAM_LOCK  (_STREAM_LOCKS+_IOB_ENTRIES-1)   /* Last stream lock */
#else  /* _WIN32 */
#define _LAST_STREAM_LOCK  (_STREAM_LOCKS+_NSTREAM_-1)  /* Last stream lock */
#endif  /* _WIN32 */


#ifdef _WIN32

#define _TOTAL_LOCKS        (_LAST_STREAM_LOCK+1)

#else  /* _WIN32 */

#define _FH_LOCKS           (_LAST_STREAM_LOCK+1)   /* Table of fh locks */

#define _LAST_FH_LOCK       (_FH_LOCKS+_NHANDLE_-1) /* Last fh lock      */

#define _TOTAL_LOCKS        (_LAST_FH_LOCK+1)       /* Total number of locks */

#endif  /* _WIN32 */


#define _LOCK_BIT_INTS     (_TOTAL_LOCKS/(sizeof(unsigned)*8))+1   /* # of ints to hold lock bits */

#ifndef __assembler

/* Multi-thread macros and prototypes */

#if defined (_MT)


#ifdef _WIN32
/* need wchar_t for _wtoken field in _tiddata */
#ifndef _WCHAR_T_DEFINED
typedef unsigned short wchar_t;
#define _WCHAR_T_DEFINED
#endif  /* _WCHAR_T_DEFINED */
#endif  /* _WIN32 */


_CRTIMP extern unsigned long __cdecl __threadid(void);
#define _threadid   (__threadid())
_CRTIMP extern unsigned long __cdecl __threadhandle(void);
#define _threadhandle   (__threadhandle())



/* Structure for each thread's data */

struct _tiddata {
        unsigned long   _tid;       /* thread ID */


        unsigned long   _thandle;   /* thread handle */

        int     _terrno;            /* errno value */
        unsigned long   _tdoserrno; /* _doserrno value */
        unsigned int    _fpds;      /* Floating Point data segment */
        unsigned long   _holdrand;  /* rand() seed value */
        char *      _token;         /* ptr to strtok() token */
#ifdef _WIN32
        wchar_t *   _wtoken;        /* ptr to wcstok() token */
#endif  /* _WIN32 */
        unsigned char * _mtoken;    /* ptr to _mbstok() token */

        /* following pointers get malloc'd at runtime */
        char *      _errmsg;        /* ptr to strerror()/_strerror() buff */
        char *      _namebuf0;      /* ptr to tmpnam() buffer */
#ifdef _WIN32
        wchar_t *   _wnamebuf0;     /* ptr to _wtmpnam() buffer */
#endif  /* _WIN32 */
        char *      _namebuf1;      /* ptr to tmpfile() buffer */
#ifdef _WIN32
        wchar_t *   _wnamebuf1;     /* ptr to _wtmpfile() buffer */
#endif  /* _WIN32 */
        char *      _asctimebuf;    /* ptr to asctime() buffer */
#ifdef _WIN32
        wchar_t *   _wasctimebuf;   /* ptr to _wasctime() buffer */
#endif  /* _WIN32 */
        void *      _gmtimebuf;     /* ptr to gmtime() structure */
        char *      _cvtbuf;        /* ptr to ecvt()/fcvt buffer */

        /* following fields are needed by _beginthread code */
        void *      _initaddr;      /* initial user thread address */
        void *      _initarg;       /* initial user thread argument */

        /* following three fields are needed to support signal handling and
         * runtime errors */
        void *      _pxcptacttab;   /* ptr to exception-action table */
        void *      _tpxcptinfoptrs; /* ptr to exception info pointers */
        int         _tfpecode;      /* float point exception code */

        /* following field is needed by NLG routines */
        unsigned long   _NLG_dwCode;

        /*
         * Per-Thread data needed by C++ Exception Handling
         */
        void *      _terminate;     /* terminate() routine */
        void *      _unexpected;    /* unexpected() routine */
        void *      _translator;    /* S.E. translator */
        void *      _curexception;  /* current exception */
        void *      _curcontext;    /* current exception context */
#if defined (_M_MRX000)
        void *      _pFrameInfoChain;
        void *      _pUnwindContext;
        void *      _pExitContext;
        int         _MipsPtdDelta;
        int         _MipsPtdEpsilon;
#elif defined (_M_PPC)
        void *      _pExitContext;
        void *      _pUnwindContext;
        void *      _pFrameInfoChain;
        int         _FrameInfo[6];
#endif  /* defined (_M_PPC) */
        };

typedef struct _tiddata * _ptiddata;

/*
 * Declaration of TLS index used in storing pointers to per-thread data
 * structures.
 */
extern unsigned long __tlsindex;

#ifdef _MT

#ifdef __cplusplus
extern "C" {
#endif  /* __cplusplus */

/*
 * Flag indicating whether or not setlocale() is active. Its value is the
 * number of setlocale() calls currently active.
 */
_CRTIMP extern int __setlc_active;

/*
 * Flag indicating whether or not a function which references the locale
 * without having locked it is active. Its value is the number of such
 * functions.
 */
_CRTIMP extern int __unguarded_readlc_active;

#ifdef __cplusplus
}
#endif  /* __cplusplus */

#endif  /* _MT */


/* macros */


#define _lock_fh(fh)            _lock_fhandle(fh)
#define _lock_str(s)            _lock_file(s)
#define _lock_str2(i,s)         _lock_file2(i,s)
#define _lock_fh_check(fh,flag)     if (flag) _lock_fhandle(fh)
#define _mlock(l)               _lock(l)
#define _munlock(l)             _unlock(l)
#define _unlock_fh(fh)          _unlock_fhandle(fh)
#define _unlock_str(s)          _unlock_file(s)
#define _unlock_str2(i,s)       _unlock_file2(i,s)
#define _unlock_fh_check(fh,flag)   if (flag) _unlock_fhandle(fh)

#define _lock_locale(llf)       \
        InterlockedIncrement( &__unguarded_readlc_active );     \
        if ( __setlc_active ) {         \
            InterlockedDecrement( &__unguarded_readlc_active ); \
            _lock( _SETLOCALE_LOCK );   \
            llf = 1;                    \
        }                               \
        else                            \
            llf = 0;

#define _unlock_locale(llf)     \
        if ( llf )                          \
            _unlock( _SETLOCALE_LOCK );     \
        else                                \
            InterlockedDecrement( &__unguarded_readlc_active );



/* multi-thread routines */

void __cdecl _lock(int);
void __cdecl _lock_file(void *);
void __cdecl _lock_file2(int, void *);
void __cdecl _lock_fhandle(int);
void __cdecl _lockexit(void);
void __cdecl _unlock(int);
void __cdecl _unlock_file(void *);
void __cdecl _unlock_file2(int, void *);
void __cdecl _unlock_fhandle(int);
void __cdecl _unlockexit(void);

_ptiddata __cdecl _getptd(void);  /* return address of per-thread CRT data */
void __cdecl _freeptd(_ptiddata); /* free up a per-thread CRT data block */
void __cdecl _initptd(_ptiddata); /* initialize a per-thread CRT data block */


#else  /* defined (_MT) */


/* macros */
#define _lock_fh(fh)
#define _lock_str(s)
#define _lock_str2(i,s)
#define _lock_fh_check(fh,flag)
#define _mlock(l)
#define _munlock(l)
#define _unlock_fh(fh)
#define _unlock_str(s)
#define _unlock_str2(i,s)
#define _unlock_fh_check(fh,flag)

#define _lock_locale(llf)
#define _unlock_locale(llf)

#endif  /* defined (_MT) */

#endif  /* __assembler */


#ifdef __cplusplus
}
#endif  /* __cplusplus */

#endif  /* _INC_MTDLL */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品久久久久久久久图文区 | 日韩欧美国产精品| 久久一区二区三区四区| 一区二区三区不卡视频在线观看| 蜜臂av日日欢夜夜爽一区| 一本大道久久a久久精二百| 久久午夜免费电影| 丝袜脚交一区二区| 色综合一个色综合| 国产精品视频一二| 国模大尺度一区二区三区| 777奇米四色成人影色区| 一色屋精品亚洲香蕉网站| 久久国产精品露脸对白| 欧美日韩国产大片| 一区二区三区在线观看网站| 国产成人免费视频网站 | 欧美区在线观看| 中文字幕视频一区二区三区久| 久久成人av少妇免费| 欧美亚洲免费在线一区| 亚洲精品伦理在线| 91麻豆高清视频| 国产精品午夜在线| 成人av免费网站| 国产精品入口麻豆九色| 国产不卡在线播放| 久久久久久久久久看片| 国产美女精品人人做人人爽| 2023国产精品| 极品瑜伽女神91| ww亚洲ww在线观看国产| 国产美女精品在线| 国产目拍亚洲精品99久久精品| 国产一区美女在线| 国产女人18毛片水真多成人如厕 | 美腿丝袜在线亚洲一区| 欧美一区二区三区免费观看视频| 日日嗨av一区二区三区四区| 欧美日韩国产高清一区二区| 日韩精品国产欧美| 69堂精品视频| 日本不卡免费在线视频| 日韩免费成人网| 另类小说色综合网站| 久久天天做天天爱综合色| 国产乱码精品1区2区3区| 国产日韩精品视频一区| k8久久久一区二区三区| 亚洲一区二区三区美女| 日韩精品一区二区三区swag| 国产成人免费视频网站| 亚洲色图欧美偷拍| 欧美日韩www| 国内精品伊人久久久久av影院| 国产欧美一区二区精品久导航 | 久久国产乱子精品免费女| 国产婷婷色一区二区三区 | 在线成人小视频| 九九**精品视频免费播放| 国产精品色哟哟| 91久久一区二区| 美女一区二区视频| 亚洲国产精品99久久久久久久久| 色婷婷亚洲一区二区三区| 免费成人在线观看视频| 亚洲婷婷综合久久一本伊一区| 欧美日韩国产欧美日美国产精品| 另类欧美日韩国产在线| 亚洲同性gay激情无套| 日韩欧美在线不卡| 99国产精品国产精品久久| 午夜精品视频一区| 欧美韩国日本不卡| 91精品国产综合久久小美女| 成人午夜免费视频| 日韩电影一二三区| 国产精品传媒入口麻豆| 日韩一级二级三级精品视频| 成人黄色综合网站| 久久国产精品色婷婷| 亚洲成人一二三| 国产精品色噜噜| 91精品免费在线观看| 91在线精品一区二区| 国产精品资源在线| 婷婷久久综合九色综合伊人色| 国产精品人人做人人爽人人添| 欧美一区二区日韩一区二区| 色中色一区二区| 成人综合婷婷国产精品久久蜜臀 | 91精品国产欧美一区二区成人| 91在线码无精品| 国产成人亚洲综合a∨婷婷图片| 日韩va欧美va亚洲va久久| 亚洲女人****多毛耸耸8| 国产清纯在线一区二区www| 日韩精品一区二区三区在线观看 | 欧美性猛交xxxx乱大交退制版| 国产一区999| 老司机免费视频一区二区三区| 亚洲影院理伦片| 中文字幕日韩一区| 国产精品嫩草影院com| 久久精品夜夜夜夜久久| 精品久久人人做人人爱| 欧美不卡视频一区| 日韩一区二区三| 在线不卡中文字幕播放| 欧美狂野另类xxxxoooo| 欧美中文字幕一区二区三区亚洲| 色综合婷婷久久| 色综合久久久网| 日本乱人伦aⅴ精品| 色94色欧美sute亚洲线路一ni| 一本到三区不卡视频| 欧洲av在线精品| 欧美在线小视频| 精品视频1区2区| 91麻豆精品国产91久久久资源速度 | 欧美日本视频在线| 欧美色图免费看| 91精品在线麻豆| 日韩一区二区精品在线观看| 日韩女优视频免费观看| 亚洲精品一区二区三区精华液| 亚洲综合偷拍欧美一区色| 亚洲一区日韩精品中文字幕| 亚洲va欧美va国产va天堂影院| 日韩精品电影在线| 久久精品72免费观看| 成人综合婷婷国产精品久久 | 国精产品一区一区三区mba视频| 欧美日韩国产不卡| 日韩午夜电影在线观看| 久久精品视频网| 亚洲丝袜自拍清纯另类| 五月婷婷久久综合| 久久精品国产精品青草| 国产凹凸在线观看一区二区| 一本在线高清不卡dvd| 欧美妇女性影城| 久久久精品tv| 亚洲精品一二三四区| 免费在线观看日韩欧美| 成人动漫在线一区| 欧美老女人在线| 国产欧美日韩另类视频免费观看| 亚洲人成精品久久久久| 精久久久久久久久久久| 色婷婷综合久色| 精品少妇一区二区三区视频免付费 | 久久国产成人午夜av影院| 国产成人免费高清| 欧美视频在线播放| 精品国产麻豆免费人成网站| 亚洲欧美一区二区视频| 久久国产精品色婷婷| 色狠狠色狠狠综合| 精品sm在线观看| 亚洲国产欧美在线| 国产91丝袜在线播放| 91精品国产综合久久久蜜臀图片| 中文字幕高清一区| 日本伊人色综合网| 91亚洲精品久久久蜜桃| 久久久国产综合精品女国产盗摄| 亚洲午夜av在线| 成av人片一区二区| 精品久久久久久久久久久久包黑料 | 亚洲国产cao| 成人黄色小视频| 欧美一二三区在线观看| 一区二区在线免费| 成人av在线播放网站| 久久久久久免费网| 美女一区二区视频| 欧美精品久久天天躁| 日韩理论片在线| 国产在线精品一区二区不卡了| 制服丝袜亚洲播放| 亚洲影院免费观看| 一本高清dvd不卡在线观看| 中文字幕不卡在线| 国产不卡高清在线观看视频| 精品国产一区二区三区av性色| 亚洲国产精品自拍| 欧美影视一区在线| 日韩一区在线看| 99久久精品国产一区二区三区 | 国产露脸91国语对白| 日韩一区二区精品| 日韩经典一区二区| 欧美情侣在线播放| 天天综合色天天综合色h| 国产精品女主播av| 国产美女视频一区| 国产性色一区二区| 成人aaaa免费全部观看| 国产精品国产精品国产专区不蜜 |