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

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

?? process.h

?? C標(biāo)準(zhǔn)庫源代碼,能提高對C的理解,不錯的哦
?? H
字號:
/***
*process.h - definition and declarations for process control functions
*
*       Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
*       This file defines the modeflag values for spawnxx calls.
*       Also contains the function argument declarations for all
*       process control related routines.
*
*       [Public]
*
****/

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

#ifndef _INC_PROCESS
#define _INC_PROCESS

#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 __cplusplus
extern "C" {
#endif  /* __cplusplus */

#ifndef _INTERNAL_IFSTRIP_
#include <cruntime.h>
#endif  /* _INTERNAL_IFSTRIP_ */


/* 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 _CRTAPI1 (for compatibility with the NT SDK) */

#ifndef _CRTAPI1
#if _MSC_VER >= 800 && _M_IX86 >= 300
#define _CRTAPI1 __cdecl
#else  /* _MSC_VER >= 800 && _M_IX86 >= 300 */
#define _CRTAPI1
#endif  /* _MSC_VER >= 800 && _M_IX86 >= 300 */
#endif  /* _CRTAPI1 */


#ifndef _MAC
#ifndef _WCHAR_T_DEFINED
typedef unsigned short wchar_t;
#define _WCHAR_T_DEFINED
#endif  /* _WCHAR_T_DEFINED */
#endif  /* _MAC */


/* modeflag values for _spawnxx routines */

#ifndef _MAC

#define _P_WAIT         0
#define _P_NOWAIT       1
#define _OLD_P_OVERLAY  2
#define _P_NOWAITO      3
#define _P_DETACH       4

#ifdef _MT
#define _P_OVERLAY      2
#else  /* _MT */
extern int _p_overlay;
#define _P_OVERLAY      _p_overlay
#endif  /* _MT */

/* Action codes for _cwait(). The action code argument to _cwait is ignored
   on Win32 though it is accepted for compatibilty with old MS CRT libs */
#define _WAIT_CHILD      0
#define _WAIT_GRANDCHILD 1

#else  /* _MAC */

#define _P_NOWAIT       1
#define _P_OVERLAY      2

#endif  /* _MAC */


/* function prototypes */

#ifdef _MT
_CRTIMP unsigned long  __cdecl _beginthread (void (__cdecl *) (void *),
        unsigned, void *);
_CRTIMP void __cdecl _endthread(void);
_CRTIMP unsigned long __cdecl _beginthreadex(void *, unsigned,
        unsigned (__stdcall *) (void *), void *, unsigned, unsigned *);
_CRTIMP void __cdecl _endthreadex(unsigned);
#endif  /* _MT */

#if _MSC_VER >= 1200
_CRTIMP __declspec(noreturn) void __cdecl abort(void);
_CRTIMP __declspec(noreturn) void __cdecl exit(int);
_CRTIMP __declspec(noreturn) void __cdecl _exit(int);
#else  /* _MSC_VER >= 1200 */
_CRTIMP void __cdecl abort(void);
_CRTIMP void __cdecl exit(int);
_CRTIMP void __cdecl _exit(int);
#endif  /* _MSC_VER >= 1200 */
_CRTIMP void __cdecl _cexit(void);
_CRTIMP void __cdecl _c_exit(void);
_CRTIMP int __cdecl _getpid(void);

#ifndef _MAC

_CRTIMP int __cdecl _cwait(int *, int, int);
_CRTIMP int __cdecl _execl(const char *, const char *, ...);
_CRTIMP int __cdecl _execle(const char *, const char *, ...);
_CRTIMP int __cdecl _execlp(const char *, const char *, ...);
_CRTIMP int __cdecl _execlpe(const char *, const char *, ...);
_CRTIMP int __cdecl _execv(const char *, const char * const *);
_CRTIMP int __cdecl _execve(const char *, const char * const *, const char * const *);
_CRTIMP int __cdecl _execvp(const char *, const char * const *);
_CRTIMP int __cdecl _execvpe(const char *, const char * const *, const char * const *);
_CRTIMP int __cdecl _spawnl(int, const char *, const char *, ...);
_CRTIMP int __cdecl _spawnle(int, const char *, const char *, ...);
_CRTIMP int __cdecl _spawnlp(int, const char *, const char *, ...);
_CRTIMP int __cdecl _spawnlpe(int, const char *, const char *, ...);
_CRTIMP int __cdecl _spawnv(int, const char *, const char * const *);
_CRTIMP int __cdecl _spawnve(int, const char *, const char * const *,
        const char * const *);
_CRTIMP int __cdecl _spawnvp(int, const char *, const char * const *);
_CRTIMP int __cdecl _spawnvpe(int, const char *, const char * const *,
        const char * const *);
_CRTIMP int __cdecl system(const char *);

#else  /* _MAC */

_CRTIMP int __cdecl _spawn(int, const char *);

#endif  /* _MAC */

#ifndef _MAC
#ifndef _WPROCESS_DEFINED
/* wide function prototypes, also declared in wchar.h  */
_CRTIMP int __cdecl _wexecl(const wchar_t *, const wchar_t *, ...);
_CRTIMP int __cdecl _wexecle(const wchar_t *, const wchar_t *, ...);
_CRTIMP int __cdecl _wexeclp(const wchar_t *, const wchar_t *, ...);
_CRTIMP int __cdecl _wexeclpe(const wchar_t *, const wchar_t *, ...);
_CRTIMP int __cdecl _wexecv(const wchar_t *, const wchar_t * const *);
_CRTIMP int __cdecl _wexecve(const wchar_t *, const wchar_t * const *, const wchar_t * const *);
_CRTIMP int __cdecl _wexecvp(const wchar_t *, const wchar_t * const *);
_CRTIMP int __cdecl _wexecvpe(const wchar_t *, const wchar_t * const *, const wchar_t * const *);
_CRTIMP int __cdecl _wspawnl(int, const wchar_t *, const wchar_t *, ...);
_CRTIMP int __cdecl _wspawnle(int, const wchar_t *, const wchar_t *, ...);
_CRTIMP int __cdecl _wspawnlp(int, const wchar_t *, const wchar_t *, ...);
_CRTIMP int __cdecl _wspawnlpe(int, const wchar_t *, const wchar_t *, ...);
_CRTIMP int __cdecl _wspawnv(int, const wchar_t *, const wchar_t * const *);
_CRTIMP int __cdecl _wspawnve(int, const wchar_t *, const wchar_t * const *,
        const wchar_t * const *);
_CRTIMP int __cdecl _wspawnvp(int, const wchar_t *, const wchar_t * const *);
_CRTIMP int __cdecl _wspawnvpe(int, const wchar_t *, const wchar_t * const *,
        const wchar_t * const *);
_CRTIMP int __cdecl _wsystem(const wchar_t *);

#define _WPROCESS_DEFINED
#endif  /* _WPROCESS_DEFINED */

/* --------- The following functions are OBSOLETE --------- */
/*
 * The Win32 API LoadLibrary, FreeLibrary and GetProcAddress should be used
 * instead.
 */
int __cdecl _loaddll(char *);
int __cdecl _unloaddll(int);
int (__cdecl * __cdecl _getdllprocaddr(int, char *, int))();
/* --------- The preceding functions are OBSOLETE --------- */


#ifdef _DECL_DLLMAIN
/*
 * Declare DLL notification (initialization/termination) routines
 *      The preferred method is for the user to provide DllMain() which will
 *      be called automatically by the DLL entry point defined by the C run-
 *      time library code.  If the user wants to define the DLL entry point
 *      routine, the user's entry point must call _CRT_INIT on all types of
 *      notifications, as the very first thing on attach notifications and
 *      as the very last thing on detach notifications.
 */
#ifdef _WINDOWS_
BOOL WINAPI DllMain(HANDLE, DWORD, LPVOID);
BOOL WINAPI _CRT_INIT(HANDLE, DWORD, LPVOID);
BOOL WINAPI _wCRT_INIT(HANDLE, DWORD, LPVOID);
extern BOOL (WINAPI *_pRawDllMain)(HANDLE, DWORD, LPVOID);
#else  /* _WINDOWS_ */
int __stdcall DllMain(void *, unsigned, void *);
int __stdcall _CRT_INIT(void *, unsigned, void *);
int __stdcall _wCRT_INIT(void *, unsigned, void *);
extern int (__stdcall *_pRawDllMain)(void *, unsigned, void *);
#endif  /* _WINDOWS_ */
#endif  /* _DECL_DLLMAIN */
#endif  /* _MAC */

#if !__STDC__

/* Non-ANSI names for compatibility */


#ifndef _MAC

#define P_WAIT          _P_WAIT
#define P_NOWAIT        _P_NOWAIT
#define P_OVERLAY       _P_OVERLAY
#define OLD_P_OVERLAY   _OLD_P_OVERLAY
#define P_NOWAITO       _P_NOWAITO
#define P_DETACH        _P_DETACH
#define WAIT_CHILD      _WAIT_CHILD
#define WAIT_GRANDCHILD _WAIT_GRANDCHILD

#else  /* _MAC */

#define P_NOWAIT        _P_NOWAIT
#define P_OVERLAY       _P_OVERLAY

#endif  /* _MAC */

#ifndef _MAC

/* current declarations */
_CRTIMP int __cdecl cwait(int *, int, int);
_CRTIMP int __cdecl execl(const char *, const char *, ...);
_CRTIMP int __cdecl execle(const char *, const char *, ...);
_CRTIMP int __cdecl execlp(const char *, const char *, ...);
_CRTIMP int __cdecl execlpe(const char *, const char *, ...);
_CRTIMP int __cdecl execv(const char *, const char * const *);
_CRTIMP int __cdecl execve(const char *, const char * const *, const char * const *);
_CRTIMP int __cdecl execvp(const char *, const char * const *);
_CRTIMP int __cdecl execvpe(const char *, const char * const *, const char * const *);
_CRTIMP int __cdecl spawnl(int, const char *, const char *, ...);
_CRTIMP int __cdecl spawnle(int, const char *, const char *, ...);
_CRTIMP int __cdecl spawnlp(int, const char *, const char *, ...);
_CRTIMP int __cdecl spawnlpe(int, const char *, const char *, ...);
_CRTIMP int __cdecl spawnv(int, const char *, const char * const *);
_CRTIMP int __cdecl spawnve(int, const char *, const char * const *,
        const char * const *);
_CRTIMP int __cdecl spawnvp(int, const char *, const char * const *);
_CRTIMP int __cdecl spawnvpe(int, const char *, const char * const *,
        const char * const *);

#endif  /* _MAC */

_CRTIMP int __cdecl getpid(void);

#endif  /* !__STDC__ */

#ifdef __cplusplus
}
#endif  /* __cplusplus */


#endif  /* _INC_PROCESS */

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕一区av| 成人免费视频国产在线观看| 国产乱码精品一区二区三区忘忧草 | 91福利在线观看| 久久久噜噜噜久噜久久综合| 天天亚洲美女在线视频| 97成人超碰视| 日本一区二区三区四区| 老色鬼精品视频在线观看播放| 一本大道久久精品懂色aⅴ| 久久久久久**毛片大全| 日韩av在线发布| 欧美在线影院一区二区| 亚洲女同一区二区| 成人动漫一区二区三区| 久久综合久久综合久久| 蜜桃在线一区二区三区| 欧美日本高清视频在线观看| 亚洲素人一区二区| 99精品欧美一区| 国产精品免费网站在线观看| 国产99久久久国产精品潘金网站| 欧美大尺度电影在线| 日韩和的一区二区| 欧美丰满高潮xxxx喷水动漫| 亚洲va欧美va人人爽午夜| 在线欧美一区二区| 一区二区三区日韩精品视频| 在线看一区二区| 亚洲制服丝袜一区| 欧美老人xxxx18| 日韩高清一区二区| 日韩一区二区三区视频| 精品在线观看免费| 精品国产精品一区二区夜夜嗨| 秋霞国产午夜精品免费视频| 日韩一区二区三区四区| 久久99精品久久久久久久久久久久| 91精品婷婷国产综合久久性色| 蜜臀国产一区二区三区在线播放| 日韩一级视频免费观看在线| 国产一区二区三区黄视频 | 亚洲成人激情自拍| 欧美久久久久久蜜桃| 日韩国产在线一| 欧美不卡视频一区| 国产成人综合在线| 亚洲婷婷综合色高清在线| 在线一区二区三区四区五区| 天天色综合成人网| 26uuu国产电影一区二区| 国产91高潮流白浆在线麻豆| 亚洲欧洲韩国日本视频| 欧美美女黄视频| 国产精品18久久久久久久久| 一区二区三区中文在线观看| 91精品欧美久久久久久动漫| 国产超碰在线一区| 性久久久久久久| 久久精品在线免费观看| 日本黄色一区二区| 久草精品在线观看| 亚洲欧美韩国综合色| 欧美一区二区视频网站| 成人理论电影网| 日韩极品在线观看| 国产精品免费视频一区| 777欧美精品| 成人v精品蜜桃久久一区| 日韩电影一区二区三区| 中文字幕巨乱亚洲| 欧美一区二区在线播放| av电影一区二区| 美国一区二区三区在线播放| 中文字幕中文字幕在线一区| 欧美成人猛片aaaaaaa| 在线免费亚洲电影| 岛国av在线一区| 日韩有码一区二区三区| 成人欧美一区二区三区1314 | 蜜臀av国产精品久久久久| 亚洲欧美在线另类| 久久天天做天天爱综合色| 91国偷自产一区二区三区成为亚洲经典 | 中文字幕亚洲综合久久菠萝蜜| 欧美日韩一级片在线观看| 成人免费视频视频在线观看免费| 蜜臀av一区二区在线免费观看| 国产精品成人网| 久久亚洲二区三区| 91精品国产综合久久精品性色| 色综合久久天天| 大尺度一区二区| 狠狠色综合色综合网络| 蜜桃久久精品一区二区| 午夜久久久影院| 亚洲伦在线观看| 国产精品国产自产拍高清av王其| 26uuu国产电影一区二区| 欧美一区三区二区| 欧美日韩国产高清一区二区| 色婷婷亚洲综合| 99久久精品免费看| www.欧美.com| av成人老司机| 92精品国产成人观看免费| 成人在线一区二区三区| 成人精品小蝌蚪| 懂色av噜噜一区二区三区av| 国产超碰在线一区| 国产91精品入口| av一区二区不卡| 一本一本大道香蕉久在线精品| 91免费在线播放| 色噜噜狠狠一区二区三区果冻| 91免费在线看| 欧美色图天堂网| 欧美日韩aaa| 欧美一级理论性理论a| 日韩精品一区二区三区蜜臀| 欧美va日韩va| 国产欧美日产一区| 亚洲视频一二三| 亚洲资源中文字幕| 日本少妇一区二区| 狠狠色狠狠色综合系列| 国产91精品一区二区麻豆亚洲| 成人黄色国产精品网站大全在线免费观看| 成人性色生活片免费看爆迷你毛片| 成人在线一区二区三区| av中文字幕亚洲| 精品视频1区2区| 日韩欧美在线网站| 久久精品一区二区三区四区| 欧美激情在线看| 亚洲电影激情视频网站| 久久99精品国产91久久来源| 粉嫩av亚洲一区二区图片| 在线国产电影不卡| 日韩视频一区二区| 国产精品污网站| 亚洲成人动漫在线观看| 另类小说色综合网站| 成人短视频下载| 欧美浪妇xxxx高跟鞋交| 亚洲精品一线二线三线| 一区二区三区在线不卡| 老司机午夜精品99久久| 99riav久久精品riav| 欧美一区二区美女| 国产精品国产三级国产专播品爱网| 亚洲午夜免费福利视频| 国产大陆亚洲精品国产| 欧美日韩日本视频| 日本一区二区免费在线| 亚洲成人一区在线| 成人一级视频在线观看| 51久久夜色精品国产麻豆| 欧美激情艳妇裸体舞| 蜜桃91丨九色丨蝌蚪91桃色| 99麻豆久久久国产精品免费优播| 91精品国产综合久久香蕉的特点| 中文字幕中文字幕一区| 极品少妇xxxx精品少妇偷拍| 欧美色爱综合网| 国产精品久久久久久久久免费樱桃 | 国产精品一级黄| 欧美色区777第一页| 中文字幕一区二区不卡| 久久aⅴ国产欧美74aaa| 欧美日韩激情一区二区| 亚洲同性gay激情无套| 国产成人丝袜美腿| 91精品国产综合久久精品app| 亚洲女人的天堂| 丁香五精品蜜臀久久久久99网站| 日韩午夜三级在线| 午夜精品成人在线视频| 欧洲一区二区av| 亚洲欧美日韩在线播放| 成人h动漫精品一区二| 久久久久高清精品| 精品影视av免费| 日韩欧美第一区| 日韩av在线播放中文字幕| 欧美男女性生活在线直播观看| 亚洲色图制服诱惑| 成人美女在线观看| 国产片一区二区三区| 韩国中文字幕2020精品| 欧美tickling网站挠脚心| 久久99国产精品麻豆| 欧美一级日韩免费不卡| 日韩黄色免费电影| 欧美一级精品大片| 久久国产精品99久久久久久老狼| 日韩精品一区二区三区视频 | 亚洲国产精品久久艾草纯爱| 在线视频一区二区三区| 亚洲国产日韩精品|