2002-03-10 00:29:33 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2001 Jon Griffiths
|
2004-06-25 03:19:15 +02:00
|
|
|
* Copyright 2004 Dimitrie O. Paun
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2004-06-25 03:19:15 +02:00
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* Naming conventions
|
|
|
|
* - Symbols are prefixed with MSVCRT_ if they conflict
|
|
|
|
* with libc symbols
|
2004-10-14 02:26:39 +02:00
|
|
|
* - Internal symbols are usually prefixed by msvcrt_.
|
2004-06-25 03:19:15 +02:00
|
|
|
* - Exported symbols that are not present in the public
|
|
|
|
* headers are usually kept the same as the original.
|
|
|
|
* Other conventions
|
|
|
|
* - To avoid conflicts with the standard C library,
|
|
|
|
* no msvcrt headers are included in the implementation.
|
|
|
|
* - Instead, symbols are duplicated here, prefixed with
|
|
|
|
* MSVCRT_, as explained above.
|
|
|
|
* - To avoid inconsistencies, a test for each symbol is
|
|
|
|
* added into tests/headers.c. Please always add a
|
|
|
|
* corresponding test when you add a new symbol!
|
2002-03-10 00:29:33 +01:00
|
|
|
*/
|
|
|
|
|
2001-01-11 00:59:25 +01:00
|
|
|
#ifndef __WINE_MSVCRT_H
|
|
|
|
#define __WINE_MSVCRT_H
|
|
|
|
|
2001-11-06 21:57:11 +01:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2001-01-11 00:59:25 +01:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
|
2013-09-25 14:41:30 +02:00
|
|
|
#define MSVCRT_LONG_MAX 0x7fffffff
|
2013-03-27 16:11:32 +01:00
|
|
|
#define MSVCRT_LONG_MIN (-MSVCRT_LONG_MAX-1)
|
2013-09-25 14:41:30 +02:00
|
|
|
#define MSVCRT_ULONG_MAX 0xffffffff
|
2010-03-29 00:04:03 +02:00
|
|
|
#define MSVCRT_I64_MAX (((__int64)0x7fffffff << 32) | 0xffffffff)
|
|
|
|
#define MSVCRT_I64_MIN (-MSVCRT_I64_MAX-1)
|
|
|
|
#define MSVCRT_UI64_MAX (((unsigned __int64)0xffffffff << 32) | 0xffffffff)
|
2015-02-03 00:14:59 +01:00
|
|
|
#define MSVCRT_MB_LEN_MAX 5
|
2013-03-28 12:57:14 +01:00
|
|
|
#ifdef _WIN64
|
|
|
|
#define MSVCRT_SIZE_MAX MSVCRT_UI64_MAX
|
|
|
|
#else
|
|
|
|
#define MSVCRT_SIZE_MAX MSVCRT_ULONG_MAX
|
|
|
|
#endif
|
2009-08-31 21:36:45 +02:00
|
|
|
|
2010-08-29 16:59:35 +02:00
|
|
|
#define MSVCRT__MAX_DRIVE 3
|
|
|
|
#define MSVCRT__MAX_DIR 256
|
|
|
|
#define MSVCRT__MAX_FNAME 256
|
|
|
|
#define MSVCRT__MAX_EXT 256
|
|
|
|
|
2014-06-21 14:22:28 +02:00
|
|
|
typedef unsigned char MSVCRT_bool;
|
2004-06-25 03:19:15 +02:00
|
|
|
typedef unsigned short MSVCRT_wchar_t;
|
|
|
|
typedef unsigned short MSVCRT_wint_t;
|
|
|
|
typedef unsigned short MSVCRT_wctype_t;
|
|
|
|
typedef unsigned short MSVCRT__ino_t;
|
2009-05-23 11:15:19 +02:00
|
|
|
typedef unsigned int MSVCRT__fsize_t;
|
2009-05-23 11:49:09 +02:00
|
|
|
typedef int MSVCRT_long;
|
|
|
|
typedef unsigned int MSVCRT_ulong;
|
2014-08-29 18:31:18 +02:00
|
|
|
typedef __int64 MSVCRT_longlong;
|
2005-11-03 14:17:51 +01:00
|
|
|
#ifdef _WIN64
|
|
|
|
typedef unsigned __int64 MSVCRT_size_t;
|
|
|
|
typedef __int64 MSVCRT_intptr_t;
|
|
|
|
typedef unsigned __int64 MSVCRT_uintptr_t;
|
|
|
|
#else
|
2008-12-11 21:01:38 +01:00
|
|
|
typedef unsigned long MSVCRT_size_t;
|
|
|
|
typedef long MSVCRT_intptr_t;
|
|
|
|
typedef unsigned long MSVCRT_uintptr_t;
|
2005-11-03 14:17:51 +01:00
|
|
|
#endif
|
2004-06-25 03:19:15 +02:00
|
|
|
typedef unsigned int MSVCRT__dev_t;
|
2009-05-23 11:49:09 +02:00
|
|
|
typedef int MSVCRT__off_t;
|
|
|
|
typedef int MSVCRT_clock_t;
|
2009-05-23 11:15:19 +02:00
|
|
|
typedef int MSVCRT___time32_t;
|
2009-11-21 14:23:22 +01:00
|
|
|
typedef __int64 DECLSPEC_ALIGN(8) MSVCRT___time64_t;
|
|
|
|
typedef __int64 DECLSPEC_ALIGN(8) MSVCRT_fpos_t;
|
2011-04-27 20:08:41 +02:00
|
|
|
typedef int MSVCRT_mbstate_t;
|
2004-06-25 03:19:15 +02:00
|
|
|
|
2011-11-05 09:03:45 +01:00
|
|
|
typedef void (__cdecl *MSVCRT_terminate_handler)(void);
|
|
|
|
typedef void (__cdecl *MSVCRT_terminate_function)(void);
|
|
|
|
typedef void (__cdecl *MSVCRT_unexpected_handler)(void);
|
|
|
|
typedef void (__cdecl *MSVCRT_unexpected_function)(void);
|
|
|
|
typedef void (__cdecl *MSVCRT__se_translator_function)(unsigned int code, struct _EXCEPTION_POINTERS *info);
|
|
|
|
typedef void (__cdecl *MSVCRT__beginthread_start_routine_t)(void *);
|
2004-06-25 03:19:15 +02:00
|
|
|
typedef unsigned int (__stdcall *MSVCRT__beginthreadex_start_routine_t)(void *);
|
2011-11-05 09:03:45 +01:00
|
|
|
typedef int (__cdecl *MSVCRT__onexit_t)(void);
|
2010-04-14 14:34:27 +02:00
|
|
|
typedef void (__cdecl *MSVCRT_invalid_parameter_handler)(const MSVCRT_wchar_t*, const MSVCRT_wchar_t*, const MSVCRT_wchar_t*, unsigned, MSVCRT_uintptr_t);
|
2010-08-25 14:46:47 +02:00
|
|
|
typedef void (__cdecl *MSVCRT_purecall_handler)(void);
|
2011-03-16 09:22:24 +01:00
|
|
|
typedef void (__cdecl *MSVCRT_security_error_handler)(int, void *);
|
2004-06-25 03:19:15 +02:00
|
|
|
|
2010-12-01 22:26:26 +01:00
|
|
|
typedef struct {ULONG x80[3];} MSVCRT__LDOUBLE; /* Intel 80 bit FP format has sizeof() 12 */
|
2006-12-17 18:56:50 +01:00
|
|
|
|
2005-12-21 20:54:26 +01:00
|
|
|
struct MSVCRT_tm {
|
|
|
|
int tm_sec;
|
|
|
|
int tm_min;
|
|
|
|
int tm_hour;
|
|
|
|
int tm_mday;
|
|
|
|
int tm_mon;
|
|
|
|
int tm_year;
|
|
|
|
int tm_wday;
|
|
|
|
int tm_yday;
|
|
|
|
int tm_isdst;
|
|
|
|
};
|
|
|
|
|
2011-05-24 17:22:42 +02:00
|
|
|
typedef struct MSVCRT_tagLC_ID {
|
|
|
|
unsigned short wLanguage;
|
|
|
|
unsigned short wCountry;
|
|
|
|
unsigned short wCodePage;
|
|
|
|
} MSVCRT_LC_ID, *MSVCRT_LPLC_ID;
|
|
|
|
|
2011-12-07 13:48:22 +01:00
|
|
|
typedef struct {
|
2012-04-11 15:22:12 +02:00
|
|
|
union {
|
|
|
|
char *str[43];
|
|
|
|
struct {
|
|
|
|
char *short_wday[7];
|
|
|
|
char *wday[7];
|
|
|
|
char *short_mon[12];
|
|
|
|
char *mon[12];
|
|
|
|
char *am;
|
|
|
|
char *pm;
|
|
|
|
char *short_date;
|
|
|
|
char *date;
|
|
|
|
char *time;
|
|
|
|
} names;
|
|
|
|
} str;
|
2011-12-07 13:48:22 +01:00
|
|
|
LCID lcid;
|
|
|
|
int unk[2];
|
2015-06-09 01:24:00 +02:00
|
|
|
union {
|
|
|
|
MSVCRT_wchar_t *wstr[43];
|
|
|
|
struct {
|
|
|
|
MSVCRT_wchar_t *short_wday[7];
|
|
|
|
MSVCRT_wchar_t *wday[7];
|
|
|
|
MSVCRT_wchar_t *short_mon[12];
|
|
|
|
MSVCRT_wchar_t *mon[12];
|
|
|
|
MSVCRT_wchar_t *am;
|
|
|
|
MSVCRT_wchar_t *pm;
|
|
|
|
MSVCRT_wchar_t *short_date;
|
|
|
|
MSVCRT_wchar_t *date;
|
|
|
|
MSVCRT_wchar_t *time;
|
|
|
|
} names;
|
|
|
|
} wstr;
|
2011-12-07 13:48:22 +01:00
|
|
|
char data[1];
|
|
|
|
} MSVCRT___lc_time_data;
|
|
|
|
|
2011-05-24 17:22:42 +02:00
|
|
|
typedef struct MSVCRT_threadlocaleinfostruct {
|
|
|
|
int refcount;
|
|
|
|
unsigned int lc_codepage;
|
|
|
|
unsigned int lc_collate_cp;
|
2011-05-26 11:40:04 +02:00
|
|
|
MSVCRT_ulong lc_handle[6];
|
2011-05-24 17:22:42 +02:00
|
|
|
MSVCRT_LC_ID lc_id[6];
|
|
|
|
struct {
|
|
|
|
char *locale;
|
2015-06-17 11:46:42 +02:00
|
|
|
MSVCRT_wchar_t *wlocale;
|
2011-05-24 17:22:42 +02:00
|
|
|
int *refcount;
|
|
|
|
int *wrefcount;
|
|
|
|
} lc_category[6];
|
|
|
|
int lc_clike;
|
|
|
|
int mb_cur_max;
|
|
|
|
int *lconv_intl_refcount;
|
|
|
|
int *lconv_num_refcount;
|
|
|
|
int *lconv_mon_refcount;
|
|
|
|
struct MSVCRT_lconv *lconv;
|
|
|
|
int *ctype1_refcount;
|
|
|
|
unsigned short *ctype1;
|
|
|
|
unsigned short *pctype;
|
|
|
|
unsigned char *pclmap;
|
|
|
|
unsigned char *pcumap;
|
2011-12-07 13:48:22 +01:00
|
|
|
MSVCRT___lc_time_data *lc_time_curr;
|
2015-06-17 11:46:42 +02:00
|
|
|
#if _MSVCR_VER >= 110
|
|
|
|
MSVCRT_wchar_t *lc_name[6];
|
|
|
|
#endif
|
2011-05-24 17:22:42 +02:00
|
|
|
} MSVCRT_threadlocinfo;
|
|
|
|
|
|
|
|
typedef struct MSVCRT_threadmbcinfostruct {
|
|
|
|
int refcount;
|
|
|
|
int mbcodepage;
|
|
|
|
int ismbcodepage;
|
|
|
|
int mblcid;
|
|
|
|
unsigned short mbulinfo[6];
|
2011-10-12 11:55:35 +02:00
|
|
|
unsigned char mbctype[257];
|
|
|
|
unsigned char mbcasemap[256];
|
2011-05-24 17:22:42 +02:00
|
|
|
} MSVCRT_threadmbcinfo;
|
|
|
|
|
|
|
|
typedef struct MSVCRT_threadlocaleinfostruct *MSVCRT_pthreadlocinfo;
|
|
|
|
typedef struct MSVCRT_threadmbcinfostruct *MSVCRT_pthreadmbcinfo;
|
|
|
|
|
|
|
|
typedef struct MSVCRT_localeinfo_struct
|
|
|
|
{
|
|
|
|
MSVCRT_pthreadlocinfo locinfo;
|
|
|
|
MSVCRT_pthreadmbcinfo mbcinfo;
|
|
|
|
} MSVCRT__locale_tstruct, *MSVCRT__locale_t;
|
|
|
|
|
2002-07-19 05:24:50 +02:00
|
|
|
|
2001-01-11 00:59:25 +01:00
|
|
|
/* TLS data */
|
2012-01-02 21:57:56 +01:00
|
|
|
extern DWORD msvcrt_tls_index DECLSPEC_HIDDEN;
|
2001-01-11 00:59:25 +01:00
|
|
|
|
2011-05-24 17:23:57 +02:00
|
|
|
/* Keep in sync with msvcr90/tests/msvcr90.c */
|
2004-06-25 03:19:15 +02:00
|
|
|
struct __thread_data {
|
2011-05-24 17:22:02 +02:00
|
|
|
DWORD tid;
|
|
|
|
HANDLE handle;
|
2004-06-25 03:19:15 +02:00
|
|
|
int thread_errno;
|
2009-05-23 11:49:09 +02:00
|
|
|
MSVCRT_ulong thread_doserrno;
|
2011-05-24 17:22:14 +02:00
|
|
|
int unk1;
|
2006-01-14 17:27:28 +01:00
|
|
|
unsigned int random_seed; /* seed for rand() */
|
2006-01-14 17:24:49 +01:00
|
|
|
char *strtok_next; /* next ptr for strtok() */
|
|
|
|
MSVCRT_wchar_t *wcstok_next; /* next ptr for wcstok() */
|
2011-05-24 17:22:14 +02:00
|
|
|
unsigned char *mbstok_next; /* next ptr for mbstok() */
|
|
|
|
char *strerror_buffer; /* buffer for strerror */
|
|
|
|
MSVCRT_wchar_t *wcserror_buffer; /* buffer for wcserror */
|
2011-05-24 17:23:13 +02:00
|
|
|
char *tmpnam_buffer; /* buffer for tmpname() */
|
|
|
|
MSVCRT_wchar_t *wtmpnam_buffer; /* buffer for wtmpname() */
|
|
|
|
void *unk2[2];
|
2006-01-14 17:22:03 +01:00
|
|
|
char *asctime_buffer; /* buffer for asctime */
|
|
|
|
MSVCRT_wchar_t *wasctime_buffer; /* buffer for wasctime */
|
2011-05-24 17:22:54 +02:00
|
|
|
struct MSVCRT_tm *time_buffer; /* buffer for localtime/gmtime */
|
2011-05-24 17:22:14 +02:00
|
|
|
char *efcvt_buffer; /* buffer for ecvt/fcvt */
|
|
|
|
int unk3[2];
|
2013-03-05 11:05:42 +01:00
|
|
|
void *unk4[3];
|
|
|
|
EXCEPTION_POINTERS *xcptinfo;
|
2004-06-25 03:19:15 +02:00
|
|
|
int fpecode;
|
2011-05-24 17:22:42 +02:00
|
|
|
MSVCRT_pthreadmbcinfo mbcinfo;
|
|
|
|
MSVCRT_pthreadlocinfo locinfo;
|
|
|
|
BOOL have_locale;
|
|
|
|
int unk5[1];
|
2004-06-25 03:19:15 +02:00
|
|
|
MSVCRT_terminate_function terminate_handler;
|
|
|
|
MSVCRT_unexpected_function unexpected_handler;
|
|
|
|
MSVCRT__se_translator_function se_translator;
|
2011-05-24 17:22:14 +02:00
|
|
|
void *unk6[3];
|
|
|
|
int unk7;
|
2004-06-25 03:19:15 +02:00
|
|
|
EXCEPTION_RECORD *exc_record;
|
2015-06-24 15:13:07 +02:00
|
|
|
void *unk8[7];
|
|
|
|
LCID cached_lcid;
|
|
|
|
int unk9[3];
|
|
|
|
DWORD cached_cp;
|
|
|
|
char cached_locale[131];
|
|
|
|
void *unk10[100];
|
2004-06-25 03:19:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct __thread_data thread_data_t;
|
|
|
|
|
2012-01-02 21:57:56 +01:00
|
|
|
extern thread_data_t *msvcrt_get_thread_data(void) DECLSPEC_HIDDEN;
|
2004-06-25 03:19:15 +02:00
|
|
|
|
2012-12-18 11:38:33 +01:00
|
|
|
LCID MSVCRT_locale_to_LCID(const char*, unsigned short*) DECLSPEC_HIDDEN;
|
2012-01-02 21:57:56 +01:00
|
|
|
extern MSVCRT__locale_t MSVCRT_locale DECLSPEC_HIDDEN;
|
2011-12-21 15:59:09 +01:00
|
|
|
extern unsigned int MSVCRT___lc_codepage;
|
2008-12-15 16:03:32 +01:00
|
|
|
extern int MSVCRT___lc_collate_cp;
|
|
|
|
extern WORD MSVCRT__ctype [257];
|
2004-06-25 03:19:15 +02:00
|
|
|
|
2014-09-02 17:06:06 +02:00
|
|
|
void msvcrt_set_errno(int) DECLSPEC_HIDDEN;
|
|
|
|
#if _MSVCR_VER >= 80
|
|
|
|
void throw_bad_alloc(const char*) DECLSPEC_HIDDEN;
|
|
|
|
#endif
|
2001-04-11 01:25:25 +02:00
|
|
|
|
2008-07-03 09:08:22 +02:00
|
|
|
void __cdecl _purecall(void);
|
|
|
|
void __cdecl _amsg_exit(int errnum);
|
2002-07-19 05:24:50 +02:00
|
|
|
|
2008-01-08 05:20:30 +01:00
|
|
|
extern char **MSVCRT__environ;
|
2009-10-05 14:55:09 +02:00
|
|
|
extern MSVCRT_wchar_t **MSVCRT__wenviron;
|
2002-07-23 22:59:12 +02:00
|
|
|
|
2012-01-02 21:57:56 +01:00
|
|
|
extern char ** msvcrt_SnapshotOfEnvironmentA(char **) DECLSPEC_HIDDEN;
|
|
|
|
extern MSVCRT_wchar_t ** msvcrt_SnapshotOfEnvironmentW(MSVCRT_wchar_t **) DECLSPEC_HIDDEN;
|
2002-07-23 22:59:12 +02:00
|
|
|
|
2012-01-02 21:57:56 +01:00
|
|
|
MSVCRT_wchar_t *msvcrt_wstrdupa(const char *) DECLSPEC_HIDDEN;
|
2008-01-07 14:22:23 +01:00
|
|
|
|
2013-01-18 11:03:13 +01:00
|
|
|
extern unsigned int MSVCRT__commode;
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
/* FIXME: This should be declared in new.h but it's not an extern "C" so
|
2001-04-11 01:25:25 +02:00
|
|
|
* it would not be much use anyway. Even for Winelib applications.
|
|
|
|
*/
|
2008-07-03 09:08:22 +02:00
|
|
|
int __cdecl MSVCRT__set_new_mode(int mode);
|
2001-01-11 00:59:25 +01:00
|
|
|
|
2008-12-11 21:01:38 +01:00
|
|
|
void* __cdecl MSVCRT_operator_new(MSVCRT_size_t);
|
2008-07-03 09:08:22 +02:00
|
|
|
void __cdecl MSVCRT_operator_delete(void*);
|
2003-03-17 22:21:59 +01:00
|
|
|
|
2012-05-05 13:42:00 +02:00
|
|
|
typedef void* (__cdecl *malloc_func_t)(MSVCRT_size_t);
|
|
|
|
typedef void (__cdecl *free_func_t)(void*);
|
2003-03-17 22:21:59 +01:00
|
|
|
|
2002-02-21 21:22:00 +01:00
|
|
|
/* Setup and teardown multi threaded locks */
|
2012-01-02 21:57:56 +01:00
|
|
|
extern void msvcrt_init_mt_locks(void) DECLSPEC_HIDDEN;
|
2014-06-24 11:57:47 +02:00
|
|
|
extern void msvcrt_free_locks(void) DECLSPEC_HIDDEN;
|
2012-01-02 21:57:56 +01:00
|
|
|
|
2012-09-07 11:01:17 +02:00
|
|
|
extern void msvcrt_init_exception(void*) DECLSPEC_HIDDEN;
|
2012-01-02 21:57:56 +01:00
|
|
|
extern BOOL msvcrt_init_locale(void) DECLSPEC_HIDDEN;
|
|
|
|
extern void msvcrt_init_math(void) DECLSPEC_HIDDEN;
|
|
|
|
extern void msvcrt_init_io(void) DECLSPEC_HIDDEN;
|
|
|
|
extern void msvcrt_free_io(void) DECLSPEC_HIDDEN;
|
|
|
|
extern void msvcrt_init_console(void) DECLSPEC_HIDDEN;
|
|
|
|
extern void msvcrt_free_console(void) DECLSPEC_HIDDEN;
|
|
|
|
extern void msvcrt_init_args(void) DECLSPEC_HIDDEN;
|
|
|
|
extern void msvcrt_free_args(void) DECLSPEC_HIDDEN;
|
|
|
|
extern void msvcrt_init_signals(void) DECLSPEC_HIDDEN;
|
|
|
|
extern void msvcrt_free_signals(void) DECLSPEC_HIDDEN;
|
2013-01-18 11:03:51 +01:00
|
|
|
extern void msvcrt_free_popen_data(void) DECLSPEC_HIDDEN;
|
2014-04-22 14:38:47 +02:00
|
|
|
extern BOOL msvcrt_init_heap(void) DECLSPEC_HIDDEN;
|
|
|
|
extern void msvcrt_destroy_heap(void) DECLSPEC_HIDDEN;
|
2012-01-02 21:57:56 +01:00
|
|
|
|
|
|
|
extern unsigned msvcrt_create_io_inherit_block(WORD*, BYTE**) DECLSPEC_HIDDEN;
|
2004-09-03 03:05:30 +02:00
|
|
|
|
2010-05-09 15:07:33 +02:00
|
|
|
extern unsigned int __cdecl _control87(unsigned int, unsigned int);
|
|
|
|
|
2002-07-20 22:30:57 +02:00
|
|
|
/* run-time error codes */
|
|
|
|
#define _RT_STACK 0
|
|
|
|
#define _RT_NULLPTR 1
|
|
|
|
#define _RT_FLOAT 2
|
|
|
|
#define _RT_INTDIV 3
|
|
|
|
#define _RT_EXECMEM 5
|
|
|
|
#define _RT_EXECFORM 6
|
|
|
|
#define _RT_EXECENV 7
|
|
|
|
#define _RT_SPACEARG 8
|
|
|
|
#define _RT_SPACEENV 9
|
|
|
|
#define _RT_ABORT 10
|
|
|
|
#define _RT_NPTR 12
|
|
|
|
#define _RT_FPTR 13
|
|
|
|
#define _RT_BREAK 14
|
|
|
|
#define _RT_INT 15
|
|
|
|
#define _RT_THREAD 16
|
|
|
|
#define _RT_LOCK 17
|
|
|
|
#define _RT_HEAP 18
|
|
|
|
#define _RT_OPENCON 19
|
|
|
|
#define _RT_QWIN 20
|
|
|
|
#define _RT_NOMAIN 21
|
|
|
|
#define _RT_NONCONT 22
|
|
|
|
#define _RT_INVALDISP 23
|
|
|
|
#define _RT_ONEXIT 24
|
|
|
|
#define _RT_PUREVIRT 25
|
|
|
|
#define _RT_STDIOINIT 26
|
|
|
|
#define _RT_LOWIOINIT 27
|
|
|
|
#define _RT_HEAPINIT 28
|
|
|
|
#define _RT_DOMAIN 120
|
|
|
|
#define _RT_SING 121
|
|
|
|
#define _RT_TLOSS 122
|
|
|
|
#define _RT_CRNL 252
|
|
|
|
#define _RT_BANNER 255
|
|
|
|
|
2009-05-23 11:06:29 +02:00
|
|
|
struct MSVCRT___timeb32 {
|
|
|
|
MSVCRT___time32_t time;
|
|
|
|
unsigned short millitm;
|
|
|
|
short timezone;
|
|
|
|
short dstflag;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MSVCRT___timeb64 {
|
|
|
|
MSVCRT___time64_t time;
|
2004-06-25 03:19:15 +02:00
|
|
|
unsigned short millitm;
|
|
|
|
short timezone;
|
|
|
|
short dstflag;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MSVCRT__iobuf {
|
|
|
|
char* _ptr;
|
|
|
|
int _cnt;
|
|
|
|
char* _base;
|
|
|
|
int _flag;
|
|
|
|
int _file;
|
|
|
|
int _charbuf;
|
|
|
|
int _bufsiz;
|
|
|
|
char* _tmpfname;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct MSVCRT__iobuf MSVCRT_FILE;
|
|
|
|
|
|
|
|
struct MSVCRT_lconv {
|
|
|
|
char* decimal_point;
|
|
|
|
char* thousands_sep;
|
|
|
|
char* grouping;
|
|
|
|
char* int_curr_symbol;
|
|
|
|
char* currency_symbol;
|
|
|
|
char* mon_decimal_point;
|
|
|
|
char* mon_thousands_sep;
|
|
|
|
char* mon_grouping;
|
|
|
|
char* positive_sign;
|
|
|
|
char* negative_sign;
|
|
|
|
char int_frac_digits;
|
|
|
|
char frac_digits;
|
|
|
|
char p_cs_precedes;
|
|
|
|
char p_sep_by_space;
|
|
|
|
char n_cs_precedes;
|
|
|
|
char n_sep_by_space;
|
|
|
|
char p_sign_posn;
|
|
|
|
char n_sign_posn;
|
2014-11-21 20:36:46 +01:00
|
|
|
#if _MSVCR_VER >= 120
|
|
|
|
MSVCRT_wchar_t* _W_decimal_point;
|
|
|
|
MSVCRT_wchar_t* _W_thousands_sep;
|
|
|
|
MSVCRT_wchar_t* _W_int_curr_symbol;
|
|
|
|
MSVCRT_wchar_t* _W_currency_symbol;
|
|
|
|
MSVCRT_wchar_t* _W_mon_decimal_point;
|
|
|
|
MSVCRT_wchar_t* _W_mon_thousands_sep;
|
|
|
|
MSVCRT_wchar_t* _W_positive_sign;
|
|
|
|
MSVCRT_wchar_t* _W_negative_sign;
|
|
|
|
#endif
|
2004-06-25 03:19:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct MSVCRT__exception {
|
|
|
|
int type;
|
|
|
|
char* name;
|
|
|
|
double arg1;
|
|
|
|
double arg2;
|
|
|
|
double retval;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MSVCRT__complex {
|
|
|
|
double x; /* Real part */
|
|
|
|
double y; /* Imaginary part */
|
|
|
|
};
|
|
|
|
|
2004-07-06 20:45:02 +02:00
|
|
|
typedef struct MSVCRT__div_t {
|
|
|
|
int quot; /* quotient */
|
|
|
|
int rem; /* remainder */
|
|
|
|
} MSVCRT_div_t;
|
|
|
|
|
|
|
|
typedef struct MSVCRT__ldiv_t {
|
2009-05-23 11:49:09 +02:00
|
|
|
MSVCRT_long quot; /* quotient */
|
|
|
|
MSVCRT_long rem; /* remainder */
|
2004-07-06 20:45:02 +02:00
|
|
|
} MSVCRT_ldiv_t;
|
|
|
|
|
2004-06-25 03:19:15 +02:00
|
|
|
struct MSVCRT__heapinfo {
|
|
|
|
int* _pentry;
|
|
|
|
MSVCRT_size_t _size;
|
|
|
|
int _useflag;
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef __i386__
|
|
|
|
struct MSVCRT___JUMP_BUFFER {
|
|
|
|
unsigned long Ebp;
|
|
|
|
unsigned long Ebx;
|
|
|
|
unsigned long Edi;
|
|
|
|
unsigned long Esi;
|
|
|
|
unsigned long Esp;
|
|
|
|
unsigned long Eip;
|
|
|
|
unsigned long Registration;
|
|
|
|
unsigned long TryLevel;
|
|
|
|
/* Start of new struct members */
|
|
|
|
unsigned long Cookie;
|
|
|
|
unsigned long UnwindFunc;
|
|
|
|
unsigned long UnwindData[6];
|
|
|
|
};
|
2011-02-01 16:40:31 +01:00
|
|
|
#elif defined(__x86_64__)
|
|
|
|
struct MSVCRT__SETJMP_FLOAT128
|
|
|
|
{
|
|
|
|
unsigned __int64 DECLSPEC_ALIGN(16) Part[2];
|
|
|
|
};
|
|
|
|
struct MSVCRT___JUMP_BUFFER
|
|
|
|
{
|
|
|
|
unsigned __int64 Frame;
|
|
|
|
unsigned __int64 Rbx;
|
|
|
|
unsigned __int64 Rsp;
|
|
|
|
unsigned __int64 Rbp;
|
|
|
|
unsigned __int64 Rsi;
|
|
|
|
unsigned __int64 Rdi;
|
|
|
|
unsigned __int64 R12;
|
|
|
|
unsigned __int64 R13;
|
|
|
|
unsigned __int64 R14;
|
|
|
|
unsigned __int64 R15;
|
|
|
|
unsigned __int64 Rip;
|
|
|
|
unsigned __int64 Spare;
|
|
|
|
struct MSVCRT__SETJMP_FLOAT128 Xmm6;
|
|
|
|
struct MSVCRT__SETJMP_FLOAT128 Xmm7;
|
|
|
|
struct MSVCRT__SETJMP_FLOAT128 Xmm8;
|
|
|
|
struct MSVCRT__SETJMP_FLOAT128 Xmm9;
|
|
|
|
struct MSVCRT__SETJMP_FLOAT128 Xmm10;
|
|
|
|
struct MSVCRT__SETJMP_FLOAT128 Xmm11;
|
|
|
|
struct MSVCRT__SETJMP_FLOAT128 Xmm12;
|
|
|
|
struct MSVCRT__SETJMP_FLOAT128 Xmm13;
|
|
|
|
struct MSVCRT__SETJMP_FLOAT128 Xmm14;
|
|
|
|
struct MSVCRT__SETJMP_FLOAT128 Xmm15;
|
|
|
|
};
|
2013-02-26 23:42:33 +01:00
|
|
|
#elif defined(__arm__)
|
|
|
|
struct MSVCRT___JUMP_BUFFER
|
|
|
|
{
|
|
|
|
unsigned long Frame;
|
|
|
|
unsigned long R4;
|
|
|
|
unsigned long R5;
|
|
|
|
unsigned long R6;
|
|
|
|
unsigned long R7;
|
|
|
|
unsigned long R8;
|
|
|
|
unsigned long R9;
|
|
|
|
unsigned long R10;
|
|
|
|
unsigned long R11;
|
|
|
|
unsigned long Sp;
|
|
|
|
unsigned long Pc;
|
|
|
|
unsigned long Fpscr;
|
|
|
|
unsigned long long D[8];
|
|
|
|
};
|
2004-06-25 03:19:15 +02:00
|
|
|
#endif /* __i386__ */
|
|
|
|
|
|
|
|
struct MSVCRT__diskfree_t {
|
|
|
|
unsigned int total_clusters;
|
|
|
|
unsigned int avail_clusters;
|
|
|
|
unsigned int sectors_per_cluster;
|
|
|
|
unsigned int bytes_per_sector;
|
|
|
|
};
|
|
|
|
|
2009-05-23 11:15:19 +02:00
|
|
|
struct MSVCRT__finddata32_t {
|
|
|
|
unsigned int attrib;
|
|
|
|
MSVCRT___time32_t time_create;
|
|
|
|
MSVCRT___time32_t time_access;
|
|
|
|
MSVCRT___time32_t time_write;
|
|
|
|
MSVCRT__fsize_t size;
|
|
|
|
char name[260];
|
2004-06-25 03:19:15 +02:00
|
|
|
};
|
|
|
|
|
2009-05-23 11:15:19 +02:00
|
|
|
struct MSVCRT__finddata32i64_t {
|
|
|
|
unsigned int attrib;
|
|
|
|
MSVCRT___time32_t time_create;
|
|
|
|
MSVCRT___time32_t time_access;
|
|
|
|
MSVCRT___time32_t time_write;
|
2009-11-21 14:23:22 +01:00
|
|
|
__int64 DECLSPEC_ALIGN(8) size;
|
2009-05-23 11:15:19 +02:00
|
|
|
char name[260];
|
2004-06-25 03:19:15 +02:00
|
|
|
};
|
|
|
|
|
2009-05-23 11:15:19 +02:00
|
|
|
struct MSVCRT__finddata64i32_t {
|
|
|
|
unsigned int attrib;
|
|
|
|
MSVCRT___time64_t time_create;
|
|
|
|
MSVCRT___time64_t time_access;
|
|
|
|
MSVCRT___time64_t time_write;
|
|
|
|
MSVCRT__fsize_t size;
|
|
|
|
char name[260];
|
2004-06-25 03:19:15 +02:00
|
|
|
};
|
|
|
|
|
2009-05-23 11:15:19 +02:00
|
|
|
struct MSVCRT__finddata64_t {
|
|
|
|
unsigned int attrib;
|
|
|
|
MSVCRT___time64_t time_create;
|
|
|
|
MSVCRT___time64_t time_access;
|
|
|
|
MSVCRT___time64_t time_write;
|
2009-11-21 14:23:22 +01:00
|
|
|
__int64 DECLSPEC_ALIGN(8) size;
|
2009-05-23 11:15:19 +02:00
|
|
|
char name[260];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MSVCRT__wfinddata32_t {
|
|
|
|
unsigned int attrib;
|
|
|
|
MSVCRT___time32_t time_create;
|
|
|
|
MSVCRT___time32_t time_access;
|
|
|
|
MSVCRT___time32_t time_write;
|
|
|
|
MSVCRT__fsize_t size;
|
|
|
|
MSVCRT_wchar_t name[260];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MSVCRT__wfinddata32i64_t {
|
|
|
|
unsigned int attrib;
|
|
|
|
MSVCRT___time32_t time_create;
|
|
|
|
MSVCRT___time32_t time_access;
|
|
|
|
MSVCRT___time32_t time_write;
|
2009-11-21 14:23:22 +01:00
|
|
|
__int64 DECLSPEC_ALIGN(8) size;
|
2009-05-23 11:15:19 +02:00
|
|
|
MSVCRT_wchar_t name[260];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MSVCRT__wfinddata64i32_t {
|
|
|
|
unsigned int attrib;
|
|
|
|
MSVCRT___time64_t time_create;
|
|
|
|
MSVCRT___time64_t time_access;
|
|
|
|
MSVCRT___time64_t time_write;
|
|
|
|
MSVCRT__fsize_t size;
|
|
|
|
MSVCRT_wchar_t name[260];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MSVCRT__wfinddata64_t {
|
|
|
|
unsigned int attrib;
|
|
|
|
MSVCRT___time64_t time_create;
|
|
|
|
MSVCRT___time64_t time_access;
|
|
|
|
MSVCRT___time64_t time_write;
|
2009-11-21 14:23:22 +01:00
|
|
|
__int64 DECLSPEC_ALIGN(8) size;
|
2009-05-23 11:15:19 +02:00
|
|
|
MSVCRT_wchar_t name[260];
|
2004-06-25 03:19:15 +02:00
|
|
|
};
|
|
|
|
|
2009-05-23 11:10:05 +02:00
|
|
|
struct MSVCRT___utimbuf32
|
2004-06-25 03:19:15 +02:00
|
|
|
{
|
2009-05-23 11:10:05 +02:00
|
|
|
MSVCRT___time32_t actime;
|
|
|
|
MSVCRT___time32_t modtime;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MSVCRT___utimbuf64
|
|
|
|
{
|
|
|
|
MSVCRT___time64_t actime;
|
|
|
|
MSVCRT___time64_t modtime;
|
2004-06-25 03:19:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/* for FreeBSD */
|
|
|
|
#undef st_atime
|
|
|
|
#undef st_ctime
|
|
|
|
#undef st_mtime
|
|
|
|
|
2009-05-23 11:15:19 +02:00
|
|
|
struct MSVCRT__stat32 {
|
|
|
|
MSVCRT__dev_t st_dev;
|
|
|
|
MSVCRT__ino_t st_ino;
|
|
|
|
unsigned short st_mode;
|
|
|
|
short st_nlink;
|
|
|
|
short st_uid;
|
|
|
|
short st_gid;
|
|
|
|
MSVCRT__dev_t st_rdev;
|
|
|
|
MSVCRT__off_t st_size;
|
|
|
|
MSVCRT___time32_t st_atime;
|
|
|
|
MSVCRT___time32_t st_mtime;
|
|
|
|
MSVCRT___time32_t st_ctime;
|
2004-06-25 03:19:15 +02:00
|
|
|
};
|
|
|
|
|
2009-05-23 11:15:19 +02:00
|
|
|
struct MSVCRT__stat32i64 {
|
|
|
|
MSVCRT__dev_t st_dev;
|
|
|
|
MSVCRT__ino_t st_ino;
|
|
|
|
unsigned short st_mode;
|
|
|
|
short st_nlink;
|
|
|
|
short st_uid;
|
|
|
|
short st_gid;
|
|
|
|
MSVCRT__dev_t st_rdev;
|
|
|
|
__int64 DECLSPEC_ALIGN(8) st_size;
|
|
|
|
MSVCRT___time32_t st_atime;
|
|
|
|
MSVCRT___time32_t st_mtime;
|
|
|
|
MSVCRT___time32_t st_ctime;
|
2004-06-25 03:19:15 +02:00
|
|
|
};
|
|
|
|
|
2009-05-23 11:15:19 +02:00
|
|
|
struct MSVCRT__stat64i32 {
|
|
|
|
MSVCRT__dev_t st_dev;
|
|
|
|
MSVCRT__ino_t st_ino;
|
|
|
|
unsigned short st_mode;
|
|
|
|
short st_nlink;
|
|
|
|
short st_uid;
|
|
|
|
short st_gid;
|
|
|
|
MSVCRT__dev_t st_rdev;
|
|
|
|
MSVCRT__off_t st_size;
|
|
|
|
MSVCRT___time64_t st_atime;
|
|
|
|
MSVCRT___time64_t st_mtime;
|
|
|
|
MSVCRT___time64_t st_ctime;
|
2004-06-25 03:19:15 +02:00
|
|
|
};
|
|
|
|
|
2007-02-14 11:24:27 +01:00
|
|
|
struct MSVCRT__stat64 {
|
|
|
|
MSVCRT__dev_t st_dev;
|
|
|
|
MSVCRT__ino_t st_ino;
|
|
|
|
unsigned short st_mode;
|
|
|
|
short st_nlink;
|
|
|
|
short st_uid;
|
|
|
|
short st_gid;
|
|
|
|
MSVCRT__dev_t st_rdev;
|
|
|
|
__int64 DECLSPEC_ALIGN(8) st_size;
|
|
|
|
MSVCRT___time64_t st_atime;
|
|
|
|
MSVCRT___time64_t st_mtime;
|
|
|
|
MSVCRT___time64_t st_ctime;
|
|
|
|
};
|
|
|
|
|
2009-05-23 11:15:19 +02:00
|
|
|
#ifdef _WIN64
|
|
|
|
#define MSVCRT__finddata_t MSVCRT__finddata64i32_t
|
|
|
|
#define MSVCRT__finddatai64_t MSVCRT__finddata64_t
|
|
|
|
#define MSVCRT__wfinddata_t MSVCRT__wfinddata64i32_t
|
|
|
|
#define MSVCRT__wfinddatai64_t MSVCRT__wfinddata64_t
|
|
|
|
#define MSVCRT__stat MSVCRT__stat64i32
|
|
|
|
#define MSVCRT__stati64 MSVCRT__stat64
|
|
|
|
#else
|
|
|
|
#define MSVCRT__finddata_t MSVCRT__finddata32_t
|
|
|
|
#define MSVCRT__finddatai64_t MSVCRT__finddata32i64_t
|
|
|
|
#define MSVCRT__wfinddata_t MSVCRT__wfinddata32_t
|
|
|
|
#define MSVCRT__wfinddatai64_t MSVCRT__wfinddata32i64_t
|
|
|
|
#define MSVCRT__stat MSVCRT__stat32
|
|
|
|
#define MSVCRT__stati64 MSVCRT__stat32i64
|
|
|
|
#endif
|
|
|
|
|
2004-06-25 03:19:15 +02:00
|
|
|
#define MSVCRT_WEOF (MSVCRT_wint_t)(0xFFFF)
|
|
|
|
#define MSVCRT_EOF (-1)
|
|
|
|
#define MSVCRT_TMP_MAX 0x7fff
|
2006-01-14 17:27:28 +01:00
|
|
|
#define MSVCRT_RAND_MAX 0x7fff
|
2004-06-25 03:19:15 +02:00
|
|
|
#define MSVCRT_BUFSIZ 512
|
|
|
|
|
2015-08-18 12:55:12 +02:00
|
|
|
#define MSVCRT_SEEK_SET 0
|
|
|
|
#define MSVCRT_SEEK_CUR 1
|
|
|
|
#define MSVCRT_SEEK_END 2
|
|
|
|
|
2004-06-25 03:19:15 +02:00
|
|
|
#define MSVCRT_STDIN_FILENO 0
|
|
|
|
#define MSVCRT_STDOUT_FILENO 1
|
|
|
|
#define MSVCRT_STDERR_FILENO 2
|
|
|
|
|
|
|
|
/* more file._flag flags, but these conflict with Unix */
|
|
|
|
#define MSVCRT__IOFBF 0x0000
|
|
|
|
#define MSVCRT__IONBF 0x0004
|
|
|
|
#define MSVCRT__IOLBF 0x0040
|
|
|
|
|
|
|
|
#define MSVCRT_FILENAME_MAX 260
|
2008-10-04 13:37:55 +02:00
|
|
|
#define MSVCRT_DRIVE_MAX 3
|
|
|
|
#define MSVCRT_FNAME_MAX 256
|
|
|
|
#define MSVCRT_DIR_MAX 256
|
|
|
|
#define MSVCRT_EXT_MAX 256
|
|
|
|
#define MSVCRT_PATH_MAX 260
|
2004-06-25 03:19:15 +02:00
|
|
|
#define MSVCRT_stdin (MSVCRT__iob+MSVCRT_STDIN_FILENO)
|
|
|
|
#define MSVCRT_stdout (MSVCRT__iob+MSVCRT_STDOUT_FILENO)
|
|
|
|
#define MSVCRT_stderr (MSVCRT__iob+MSVCRT_STDERR_FILENO)
|
|
|
|
|
|
|
|
#define MSVCRT__P_WAIT 0
|
|
|
|
#define MSVCRT__P_NOWAIT 1
|
|
|
|
#define MSVCRT__P_OVERLAY 2
|
|
|
|
#define MSVCRT__P_NOWAITO 3
|
|
|
|
#define MSVCRT__P_DETACH 4
|
|
|
|
|
|
|
|
#define MSVCRT_EPERM 1
|
|
|
|
#define MSVCRT_ENOENT 2
|
|
|
|
#define MSVCRT_ESRCH 3
|
|
|
|
#define MSVCRT_EINTR 4
|
|
|
|
#define MSVCRT_EIO 5
|
|
|
|
#define MSVCRT_ENXIO 6
|
|
|
|
#define MSVCRT_E2BIG 7
|
|
|
|
#define MSVCRT_ENOEXEC 8
|
|
|
|
#define MSVCRT_EBADF 9
|
|
|
|
#define MSVCRT_ECHILD 10
|
|
|
|
#define MSVCRT_EAGAIN 11
|
|
|
|
#define MSVCRT_ENOMEM 12
|
|
|
|
#define MSVCRT_EACCES 13
|
|
|
|
#define MSVCRT_EFAULT 14
|
|
|
|
#define MSVCRT_EBUSY 16
|
|
|
|
#define MSVCRT_EEXIST 17
|
|
|
|
#define MSVCRT_EXDEV 18
|
|
|
|
#define MSVCRT_ENODEV 19
|
|
|
|
#define MSVCRT_ENOTDIR 20
|
|
|
|
#define MSVCRT_EISDIR 21
|
|
|
|
#define MSVCRT_EINVAL 22
|
|
|
|
#define MSVCRT_ENFILE 23
|
|
|
|
#define MSVCRT_EMFILE 24
|
|
|
|
#define MSVCRT_ENOTTY 25
|
|
|
|
#define MSVCRT_EFBIG 27
|
|
|
|
#define MSVCRT_ENOSPC 28
|
|
|
|
#define MSVCRT_ESPIPE 29
|
|
|
|
#define MSVCRT_EROFS 30
|
|
|
|
#define MSVCRT_EMLINK 31
|
|
|
|
#define MSVCRT_EPIPE 32
|
|
|
|
#define MSVCRT_EDOM 33
|
|
|
|
#define MSVCRT_ERANGE 34
|
|
|
|
#define MSVCRT_EDEADLK 36
|
|
|
|
#define MSVCRT_EDEADLOCK MSVCRT_EDEADLK
|
|
|
|
#define MSVCRT_ENAMETOOLONG 38
|
|
|
|
#define MSVCRT_ENOLCK 39
|
|
|
|
#define MSVCRT_ENOSYS 40
|
|
|
|
#define MSVCRT_ENOTEMPTY 41
|
2006-01-23 19:29:36 +01:00
|
|
|
#define MSVCRT_EILSEQ 42
|
2010-10-19 07:23:30 +02:00
|
|
|
#define MSVCRT_STRUNCATE 80
|
2004-06-25 03:19:15 +02:00
|
|
|
|
|
|
|
#define MSVCRT_LC_ALL 0
|
|
|
|
#define MSVCRT_LC_COLLATE 1
|
|
|
|
#define MSVCRT_LC_CTYPE 2
|
|
|
|
#define MSVCRT_LC_MONETARY 3
|
|
|
|
#define MSVCRT_LC_NUMERIC 4
|
|
|
|
#define MSVCRT_LC_TIME 5
|
|
|
|
#define MSVCRT_LC_MIN MSVCRT_LC_ALL
|
|
|
|
#define MSVCRT_LC_MAX MSVCRT_LC_TIME
|
|
|
|
|
|
|
|
#define MSVCRT__HEAPEMPTY -1
|
|
|
|
#define MSVCRT__HEAPOK -2
|
|
|
|
#define MSVCRT__HEAPBADBEGIN -3
|
|
|
|
#define MSVCRT__HEAPBADNODE -4
|
|
|
|
#define MSVCRT__HEAPEND -5
|
|
|
|
#define MSVCRT__HEAPBADPTR -6
|
|
|
|
|
|
|
|
#define MSVCRT__FREEENTRY 0
|
|
|
|
#define MSVCRT__USEDENTRY 1
|
|
|
|
|
|
|
|
#define MSVCRT__OUT_TO_DEFAULT 0
|
2011-01-28 15:49:27 +01:00
|
|
|
#define MSVCRT__OUT_TO_STDERR 1
|
|
|
|
#define MSVCRT__OUT_TO_MSGBOX 2
|
2004-06-25 03:19:15 +02:00
|
|
|
#define MSVCRT__REPORT_ERRMODE 3
|
|
|
|
|
|
|
|
/* ASCII char classification table - binary compatible */
|
|
|
|
#define MSVCRT__UPPER 0x0001 /* C1_UPPER */
|
|
|
|
#define MSVCRT__LOWER 0x0002 /* C1_LOWER */
|
|
|
|
#define MSVCRT__DIGIT 0x0004 /* C1_DIGIT */
|
|
|
|
#define MSVCRT__SPACE 0x0008 /* C1_SPACE */
|
|
|
|
#define MSVCRT__PUNCT 0x0010 /* C1_PUNCT */
|
|
|
|
#define MSVCRT__CONTROL 0x0020 /* C1_CNTRL */
|
|
|
|
#define MSVCRT__BLANK 0x0040 /* C1_BLANK */
|
|
|
|
#define MSVCRT__HEX 0x0080 /* C1_XDIGIT */
|
|
|
|
#define MSVCRT__LEADBYTE 0x8000
|
|
|
|
#define MSVCRT__ALPHA (0x0100|MSVCRT__UPPER|MSVCRT__LOWER) /* (C1_ALPHA|_UPPER|_LOWER) */
|
|
|
|
|
|
|
|
#define MSVCRT__IOREAD 0x0001
|
|
|
|
#define MSVCRT__IOWRT 0x0002
|
|
|
|
#define MSVCRT__IOMYBUF 0x0008
|
|
|
|
#define MSVCRT__IOEOF 0x0010
|
|
|
|
#define MSVCRT__IOERR 0x0020
|
|
|
|
#define MSVCRT__IOSTRG 0x0040
|
|
|
|
#define MSVCRT__IORW 0x0080
|
2014-06-26 12:29:59 +02:00
|
|
|
#define MSVCRT__USERBUF 0x0100
|
2013-01-18 11:03:13 +01:00
|
|
|
#define MSVCRT__IOCOMMIT 0x4000
|
2004-06-25 03:19:15 +02:00
|
|
|
|
|
|
|
#define MSVCRT__S_IEXEC 0x0040
|
|
|
|
#define MSVCRT__S_IWRITE 0x0080
|
|
|
|
#define MSVCRT__S_IREAD 0x0100
|
|
|
|
#define MSVCRT__S_IFIFO 0x1000
|
|
|
|
#define MSVCRT__S_IFCHR 0x2000
|
|
|
|
#define MSVCRT__S_IFDIR 0x4000
|
|
|
|
#define MSVCRT__S_IFREG 0x8000
|
|
|
|
#define MSVCRT__S_IFMT 0xF000
|
|
|
|
|
|
|
|
#define MSVCRT__LK_UNLCK 0
|
|
|
|
#define MSVCRT__LK_LOCK 1
|
|
|
|
#define MSVCRT__LK_NBLCK 2
|
|
|
|
#define MSVCRT__LK_RLCK 3
|
|
|
|
#define MSVCRT__LK_NBRLCK 4
|
|
|
|
|
|
|
|
#define MSVCRT__SH_COMPAT 0x00 /* Compatibility */
|
|
|
|
#define MSVCRT__SH_DENYRW 0x10 /* Deny read/write */
|
|
|
|
#define MSVCRT__SH_DENYWR 0x20 /* Deny write */
|
|
|
|
#define MSVCRT__SH_DENYRD 0x30 /* Deny read */
|
|
|
|
#define MSVCRT__SH_DENYNO 0x40 /* Deny nothing */
|
|
|
|
|
|
|
|
#define MSVCRT__O_RDONLY 0
|
|
|
|
#define MSVCRT__O_WRONLY 1
|
|
|
|
#define MSVCRT__O_RDWR 2
|
|
|
|
#define MSVCRT__O_ACCMODE (MSVCRT__O_RDONLY|MSVCRT__O_WRONLY|MSVCRT__O_RDWR)
|
|
|
|
#define MSVCRT__O_APPEND 0x0008
|
|
|
|
#define MSVCRT__O_RANDOM 0x0010
|
|
|
|
#define MSVCRT__O_SEQUENTIAL 0x0020
|
|
|
|
#define MSVCRT__O_TEMPORARY 0x0040
|
|
|
|
#define MSVCRT__O_NOINHERIT 0x0080
|
|
|
|
#define MSVCRT__O_CREAT 0x0100
|
|
|
|
#define MSVCRT__O_TRUNC 0x0200
|
|
|
|
#define MSVCRT__O_EXCL 0x0400
|
|
|
|
#define MSVCRT__O_SHORT_LIVED 0x1000
|
|
|
|
#define MSVCRT__O_TEXT 0x4000
|
|
|
|
#define MSVCRT__O_BINARY 0x8000
|
|
|
|
#define MSVCRT__O_RAW MSVCRT__O_BINARY
|
2013-01-10 11:42:15 +01:00
|
|
|
#define MSVCRT__O_WTEXT 0x10000
|
|
|
|
#define MSVCRT__O_U16TEXT 0x20000
|
|
|
|
#define MSVCRT__O_U8TEXT 0x40000
|
2004-06-25 03:19:15 +02:00
|
|
|
|
|
|
|
/* _statusfp bit flags */
|
|
|
|
#define MSVCRT__SW_INEXACT 0x00000001 /* inexact (precision) */
|
|
|
|
#define MSVCRT__SW_UNDERFLOW 0x00000002 /* underflow */
|
|
|
|
#define MSVCRT__SW_OVERFLOW 0x00000004 /* overflow */
|
|
|
|
#define MSVCRT__SW_ZERODIVIDE 0x00000008 /* zero divide */
|
|
|
|
#define MSVCRT__SW_INVALID 0x00000010 /* invalid */
|
|
|
|
|
|
|
|
#define MSVCRT__SW_UNEMULATED 0x00000040 /* unemulated instruction */
|
|
|
|
#define MSVCRT__SW_SQRTNEG 0x00000080 /* square root of a neg number */
|
|
|
|
#define MSVCRT__SW_STACKOVERFLOW 0x00000200 /* FP stack overflow */
|
|
|
|
#define MSVCRT__SW_STACKUNDERFLOW 0x00000400 /* FP stack underflow */
|
|
|
|
|
|
|
|
#define MSVCRT__SW_DENORMAL 0x00080000 /* denormal status bit */
|
|
|
|
|
|
|
|
/* fpclass constants */
|
|
|
|
#define MSVCRT__FPCLASS_SNAN 0x0001 /* Signaling "Not a Number" */
|
|
|
|
#define MSVCRT__FPCLASS_QNAN 0x0002 /* Quiet "Not a Number" */
|
|
|
|
#define MSVCRT__FPCLASS_NINF 0x0004 /* Negative Infinity */
|
|
|
|
#define MSVCRT__FPCLASS_NN 0x0008 /* Negative Normal */
|
|
|
|
#define MSVCRT__FPCLASS_ND 0x0010 /* Negative Denormal */
|
|
|
|
#define MSVCRT__FPCLASS_NZ 0x0020 /* Negative Zero */
|
|
|
|
#define MSVCRT__FPCLASS_PZ 0x0040 /* Positive Zero */
|
|
|
|
#define MSVCRT__FPCLASS_PD 0x0080 /* Positive Denormal */
|
|
|
|
#define MSVCRT__FPCLASS_PN 0x0100 /* Positive Normal */
|
|
|
|
#define MSVCRT__FPCLASS_PINF 0x0200 /* Positive Infinity */
|
|
|
|
|
2014-12-09 07:43:07 +01:00
|
|
|
/* fpclassify constants */
|
|
|
|
#define MSVCRT_FP_INFINITE 1
|
|
|
|
#define MSVCRT_FP_NAN 2
|
|
|
|
#define MSVCRT_FP_NORMAL -1
|
|
|
|
#define MSVCRT_FP_SUBNORMAL -2
|
|
|
|
#define MSVCRT_FP_ZERO 0
|
|
|
|
|
2010-11-26 14:51:46 +01:00
|
|
|
#define MSVCRT__MCW_EM 0x0008001f
|
|
|
|
#define MSVCRT__MCW_IC 0x00040000
|
|
|
|
#define MSVCRT__MCW_RC 0x00000300
|
|
|
|
#define MSVCRT__MCW_PC 0x00030000
|
|
|
|
#define MSVCRT__MCW_DN 0x03000000
|
|
|
|
|
2004-06-25 03:19:15 +02:00
|
|
|
#define MSVCRT__EM_INVALID 0x00000010
|
|
|
|
#define MSVCRT__EM_DENORMAL 0x00080000
|
|
|
|
#define MSVCRT__EM_ZERODIVIDE 0x00000008
|
|
|
|
#define MSVCRT__EM_OVERFLOW 0x00000004
|
|
|
|
#define MSVCRT__EM_UNDERFLOW 0x00000002
|
|
|
|
#define MSVCRT__EM_INEXACT 0x00000001
|
|
|
|
#define MSVCRT__IC_AFFINE 0x00040000
|
|
|
|
#define MSVCRT__IC_PROJECTIVE 0x00000000
|
|
|
|
#define MSVCRT__RC_CHOP 0x00000300
|
|
|
|
#define MSVCRT__RC_UP 0x00000200
|
|
|
|
#define MSVCRT__RC_DOWN 0x00000100
|
|
|
|
#define MSVCRT__RC_NEAR 0x00000000
|
|
|
|
#define MSVCRT__PC_24 0x00020000
|
|
|
|
#define MSVCRT__PC_53 0x00010000
|
|
|
|
#define MSVCRT__PC_64 0x00000000
|
2010-11-26 14:51:46 +01:00
|
|
|
#define MSVCRT__DN_SAVE 0x00000000
|
|
|
|
#define MSVCRT__DN_FLUSH 0x01000000
|
|
|
|
#define MSVCRT__DN_FLUSH_OPERANDS_SAVE_RESULTS 0x02000000
|
|
|
|
#define MSVCRT__DN_SAVE_OPERANDS_FLUSH_RESULTS 0x03000000
|
|
|
|
#define MSVCRT__EM_AMBIGUOUS 0x80000000
|
2004-06-25 03:19:15 +02:00
|
|
|
|
2004-09-08 21:05:28 +02:00
|
|
|
#define MSVCRT_CLOCKS_PER_SEC 1000
|
|
|
|
|
2005-12-01 12:48:44 +01:00
|
|
|
/* signals */
|
|
|
|
#define MSVCRT_SIGINT 2
|
|
|
|
#define MSVCRT_SIGILL 4
|
|
|
|
#define MSVCRT_SIGFPE 8
|
|
|
|
#define MSVCRT_SIGSEGV 11
|
|
|
|
#define MSVCRT_SIGTERM 15
|
|
|
|
#define MSVCRT_SIGBREAK 21
|
|
|
|
#define MSVCRT_SIGABRT 22
|
|
|
|
#define MSVCRT_NSIG (MSVCRT_SIGABRT + 1)
|
|
|
|
|
2009-01-03 18:43:00 +01:00
|
|
|
typedef void (__cdecl *MSVCRT___sighandler_t)(int);
|
2005-12-01 12:48:44 +01:00
|
|
|
|
|
|
|
#define MSVCRT_SIG_DFL ((MSVCRT___sighandler_t)0)
|
|
|
|
#define MSVCRT_SIG_IGN ((MSVCRT___sighandler_t)1)
|
|
|
|
#define MSVCRT_SIG_ERR ((MSVCRT___sighandler_t)-1)
|
|
|
|
|
2008-12-11 22:28:26 +01:00
|
|
|
#define MSVCRT__FPE_INVALID 0x81
|
|
|
|
#define MSVCRT__FPE_DENORMAL 0x82
|
|
|
|
#define MSVCRT__FPE_ZERODIVIDE 0x83
|
|
|
|
#define MSVCRT__FPE_OVERFLOW 0x84
|
|
|
|
#define MSVCRT__FPE_UNDERFLOW 0x85
|
|
|
|
#define MSVCRT__FPE_INEXACT 0x86
|
|
|
|
#define MSVCRT__FPE_UNEMULATED 0x87
|
|
|
|
#define MSVCRT__FPE_SQRTNEG 0x88
|
|
|
|
#define MSVCRT__FPE_STACKOVERFLOW 0x8a
|
|
|
|
#define MSVCRT__FPE_STACKUNDERFLOW 0x8b
|
|
|
|
#define MSVCRT__FPE_EXPLICITGEN 0x8c
|
|
|
|
|
|
|
|
#define _MS 0x01
|
|
|
|
#define _MP 0x02
|
|
|
|
#define _M1 0x04
|
|
|
|
#define _M2 0x08
|
|
|
|
|
|
|
|
#define _SBUP 0x10
|
|
|
|
#define _SBLOW 0x20
|
|
|
|
|
|
|
|
#define _MBC_SINGLE 0
|
|
|
|
#define _MBC_LEAD 1
|
|
|
|
#define _MBC_TRAIL 2
|
|
|
|
#define _MBC_ILLEGAL -1
|
|
|
|
|
|
|
|
#define _MB_CP_SBCS 0
|
|
|
|
#define _MB_CP_OEM -2
|
|
|
|
#define _MB_CP_ANSI -3
|
|
|
|
#define _MB_CP_LOCALE -4
|
|
|
|
|
2010-06-06 17:11:09 +02:00
|
|
|
#define MSVCRT__TRUNCATE ((MSVCRT_size_t)-1)
|
2010-04-19 10:57:40 +02:00
|
|
|
|
2010-10-11 12:24:20 +02:00
|
|
|
#define _MAX__TIME64_T (((MSVCRT___time64_t)0x00000007 << 32) | 0x93406FFF)
|
|
|
|
|
2011-01-19 23:21:11 +01:00
|
|
|
/* _set_abort_behavior codes */
|
|
|
|
#define MSVCRT__WRITE_ABORT_MSG 1
|
|
|
|
#define MSVCRT__CALL_REPORTFAULT 2
|
|
|
|
|
2011-03-08 20:41:07 +01:00
|
|
|
/* _get_output_format return code */
|
|
|
|
#define MSVCRT__TWO_DIGIT_EXPONENT 0x1
|
|
|
|
|
2012-12-24 12:10:21 +01:00
|
|
|
#define MSVCRT__NLSCMPERROR ((unsigned int)0x7fffffff)
|
|
|
|
|
2008-07-03 09:08:22 +02:00
|
|
|
void __cdecl MSVCRT_free(void*);
|
|
|
|
void* __cdecl MSVCRT_malloc(MSVCRT_size_t);
|
|
|
|
void* __cdecl MSVCRT_calloc(MSVCRT_size_t,MSVCRT_size_t);
|
|
|
|
void* __cdecl MSVCRT_realloc(void*,MSVCRT_size_t);
|
|
|
|
|
|
|
|
int __cdecl MSVCRT_iswalpha(MSVCRT_wint_t);
|
|
|
|
int __cdecl MSVCRT_iswspace(MSVCRT_wint_t);
|
|
|
|
int __cdecl MSVCRT_iswdigit(MSVCRT_wint_t);
|
|
|
|
int __cdecl MSVCRT_isleadbyte(int);
|
2011-10-12 11:56:13 +02:00
|
|
|
int __cdecl MSVCRT__isleadbyte_l(int, MSVCRT__locale_t);
|
2008-07-03 09:08:22 +02:00
|
|
|
|
2011-05-19 15:32:00 +02:00
|
|
|
void __cdecl MSVCRT__lock_file(MSVCRT_FILE*);
|
|
|
|
void __cdecl MSVCRT__unlock_file(MSVCRT_FILE*);
|
2008-07-03 09:08:22 +02:00
|
|
|
int __cdecl MSVCRT_fgetc(MSVCRT_FILE*);
|
2014-10-28 14:43:43 +01:00
|
|
|
int __cdecl MSVCRT__fgetc_nolock(MSVCRT_FILE*);
|
2014-11-04 22:51:43 +01:00
|
|
|
int __cdecl MSVCRT__fputc_nolock(int,MSVCRT_FILE*);
|
2008-07-03 09:08:22 +02:00
|
|
|
int __cdecl MSVCRT_ungetc(int,MSVCRT_FILE*);
|
2014-11-04 22:52:03 +01:00
|
|
|
int __cdecl MSVCRT__ungetc_nolock(int,MSVCRT_FILE*);
|
2008-07-03 09:08:22 +02:00
|
|
|
MSVCRT_wint_t __cdecl MSVCRT_fgetwc(MSVCRT_FILE*);
|
2014-10-28 14:43:47 +01:00
|
|
|
MSVCRT_wint_t __cdecl MSVCRT__fgetwc_nolock(MSVCRT_FILE*);
|
2014-11-04 22:51:52 +01:00
|
|
|
MSVCRT_wint_t __cdecl MSVCRT__fputwc_nolock(MSVCRT_wint_t,MSVCRT_FILE*);
|
2008-07-03 09:08:22 +02:00
|
|
|
MSVCRT_wint_t __cdecl MSVCRT_ungetwc(MSVCRT_wint_t,MSVCRT_FILE*);
|
2014-11-04 22:52:11 +01:00
|
|
|
MSVCRT_wint_t __cdecl MSVCRT__ungetwc_nolock(MSVCRT_wint_t, MSVCRT_FILE*);
|
2014-10-15 16:47:07 +02:00
|
|
|
int __cdecl MSVCRT__fseeki64_nolock(MSVCRT_FILE*,__int64,int);
|
2013-01-10 11:44:02 +01:00
|
|
|
__int64 __cdecl MSVCRT__ftelli64(MSVCRT_FILE* file);
|
2014-10-15 16:46:01 +02:00
|
|
|
__int64 __cdecl MSVCRT__ftelli64_nolock(MSVCRT_FILE*);
|
2008-07-03 09:08:22 +02:00
|
|
|
void __cdecl MSVCRT__exit(int);
|
|
|
|
void __cdecl MSVCRT_abort(void);
|
2009-05-23 11:49:09 +02:00
|
|
|
MSVCRT_ulong* __cdecl MSVCRT___doserrno(void);
|
2008-07-03 09:08:22 +02:00
|
|
|
int* __cdecl MSVCRT__errno(void);
|
|
|
|
char* __cdecl MSVCRT_getenv(const char*);
|
2014-10-09 19:51:55 +02:00
|
|
|
MSVCRT_size_t __cdecl MSVCRT__fread_nolock(void*,MSVCRT_size_t,MSVCRT_size_t,MSVCRT_FILE*);
|
2014-11-09 20:17:45 +01:00
|
|
|
MSVCRT_size_t __cdecl MSVCRT__fread_nolock_s(void*,MSVCRT_size_t,MSVCRT_size_t,MSVCRT_size_t,MSVCRT_FILE*);
|
2014-10-09 19:51:59 +02:00
|
|
|
MSVCRT_size_t __cdecl MSVCRT__fwrite_nolock(const void*,MSVCRT_size_t,MSVCRT_size_t,MSVCRT_FILE*);
|
2008-07-03 09:08:22 +02:00
|
|
|
int __cdecl MSVCRT_fclose(MSVCRT_FILE*);
|
2014-10-07 13:35:29 +02:00
|
|
|
int __cdecl MSVCRT__fclose_nolock(MSVCRT_FILE*);
|
2014-10-20 21:03:16 +02:00
|
|
|
int __cdecl MSVCRT__fflush_nolock(MSVCRT_FILE*);
|
2008-07-03 09:08:22 +02:00
|
|
|
void __cdecl MSVCRT_terminate(void);
|
2008-12-11 21:13:20 +01:00
|
|
|
MSVCRT_FILE* __cdecl MSVCRT__iob_func(void);
|
2008-07-03 09:08:22 +02:00
|
|
|
MSVCRT_clock_t __cdecl MSVCRT_clock(void);
|
2009-05-23 11:06:29 +02:00
|
|
|
MSVCRT___time32_t __cdecl MSVCRT__time32(MSVCRT___time32_t*);
|
|
|
|
MSVCRT___time64_t __cdecl MSVCRT__time64(MSVCRT___time64_t*);
|
2008-07-03 09:08:22 +02:00
|
|
|
MSVCRT_FILE* __cdecl MSVCRT__fdopen(int, const char *);
|
|
|
|
MSVCRT_FILE* __cdecl MSVCRT__wfdopen(int, const MSVCRT_wchar_t *);
|
2010-04-19 10:57:40 +02:00
|
|
|
int __cdecl MSVCRT_vsnprintf(char *str, MSVCRT_size_t len, const char *format, __ms_va_list valist);
|
2010-04-19 10:57:50 +02:00
|
|
|
int __cdecl MSVCRT_vsnwprintf(MSVCRT_wchar_t *str, MSVCRT_size_t len,
|
2009-01-02 21:43:58 +01:00
|
|
|
const MSVCRT_wchar_t *format, __ms_va_list valist );
|
2011-04-05 17:06:45 +02:00
|
|
|
int __cdecl MSVCRT__snwprintf(MSVCRT_wchar_t*, unsigned int, const MSVCRT_wchar_t*, ...);
|
2010-08-27 01:46:35 +02:00
|
|
|
int __cdecl MSVCRT_sprintf(char*,const char*,...);
|
2012-04-11 15:21:32 +02:00
|
|
|
int __cdecl MSVCRT__snprintf(char*,unsigned int,const char*,...);
|
2010-08-27 01:46:35 +02:00
|
|
|
int __cdecl MSVCRT__scprintf(const char*,...);
|
2008-07-03 09:08:22 +02:00
|
|
|
int __cdecl MSVCRT_raise(int sig);
|
2014-04-16 16:15:41 +02:00
|
|
|
int __cdecl MSVCRT__set_printf_count_output(int);
|
2004-06-25 03:19:15 +02:00
|
|
|
|
2010-04-15 14:25:47 +02:00
|
|
|
#define MSVCRT__ENABLE_PER_THREAD_LOCALE 1
|
|
|
|
#define MSVCRT__DISABLE_PER_THREAD_LOCALE 2
|
|
|
|
|
2010-04-15 14:25:13 +02:00
|
|
|
extern MSVCRT__locale_t MSVCRT_locale;
|
2012-01-02 21:57:56 +01:00
|
|
|
MSVCRT_pthreadlocinfo get_locinfo(void) DECLSPEC_HIDDEN;
|
|
|
|
MSVCRT_pthreadmbcinfo get_mbcinfo(void) DECLSPEC_HIDDEN;
|
2010-05-20 02:36:44 +02:00
|
|
|
void __cdecl MSVCRT__free_locale(MSVCRT__locale_t);
|
2012-01-02 21:57:56 +01:00
|
|
|
void free_locinfo(MSVCRT_pthreadlocinfo) DECLSPEC_HIDDEN;
|
|
|
|
void free_mbcinfo(MSVCRT_pthreadmbcinfo) DECLSPEC_HIDDEN;
|
|
|
|
int _setmbcp_l(int, LCID, MSVCRT_pthreadmbcinfo) DECLSPEC_HIDDEN;
|
2010-04-15 14:25:13 +02:00
|
|
|
|
2004-06-25 03:19:15 +02:00
|
|
|
#ifndef __WINE_MSVCRT_TEST
|
2008-07-03 09:08:22 +02:00
|
|
|
int __cdecl MSVCRT__write(int,const void*,unsigned int);
|
|
|
|
int __cdecl _getch(void);
|
2008-12-11 22:28:26 +01:00
|
|
|
int __cdecl _ismbblead(unsigned int);
|
2015-07-06 19:40:10 +02:00
|
|
|
int __cdecl _ismbblead_l(unsigned int, MSVCRT__locale_t);
|
2012-03-15 15:41:33 +01:00
|
|
|
int __cdecl _ismbclegal(unsigned int c);
|
2008-07-03 09:08:22 +02:00
|
|
|
int __cdecl _ismbstrail(const unsigned char* start, const unsigned char* str);
|
2013-03-20 10:40:45 +01:00
|
|
|
int __cdecl MSVCRT_mbtowc(MSVCRT_wchar_t*,const char*,MSVCRT_size_t);
|
2011-04-05 17:06:45 +02:00
|
|
|
MSVCRT_size_t __cdecl MSVCRT_mbstowcs(MSVCRT_wchar_t*,const char*,MSVCRT_size_t);
|
2013-08-29 12:07:03 +02:00
|
|
|
MSVCRT_size_t __cdecl MSVCRT_wcstombs(char*,const MSVCRT_wchar_t*,MSVCRT_size_t);
|
2010-03-29 00:00:26 +02:00
|
|
|
MSVCRT_intptr_t __cdecl MSVCRT__spawnve(int,const char*,const char* const *,const char* const *);
|
|
|
|
MSVCRT_intptr_t __cdecl MSVRT__spawnvpe(int,const char*,const char* const *,const char* const *);
|
2011-06-03 15:28:32 +02:00
|
|
|
MSVCRT_intptr_t __cdecl MSVCRT__wspawnve(int,const MSVCRT_wchar_t*,const MSVCRT_wchar_t* const *,const MSVCRT_wchar_t* const *);
|
|
|
|
MSVCRT_intptr_t __cdecl MSVCRT__wspawnvpe(int,const MSVCRT_wchar_t*,const MSVCRT_wchar_t* const *,const MSVCRT_wchar_t* const *);
|
|
|
|
void __cdecl MSVCRT__searchenv(const char*,const char*,char*);
|
|
|
|
int __cdecl MSVCRT__getdrive(void);
|
|
|
|
char* __cdecl MSVCRT__strdup(const char*);
|
2010-03-29 00:00:26 +02:00
|
|
|
char* __cdecl MSVCRT__strnset(char*,int,MSVCRT_size_t);
|
2008-07-03 09:08:22 +02:00
|
|
|
char* __cdecl _strset(char*,int);
|
|
|
|
int __cdecl _ungetch(int);
|
|
|
|
int __cdecl _cputs(const char*);
|
|
|
|
int __cdecl _cprintf(const char*,...);
|
2011-04-05 17:06:45 +02:00
|
|
|
int __cdecl _cwprintf(const MSVCRT_wchar_t*,...);
|
2011-06-03 15:28:32 +02:00
|
|
|
char*** __cdecl MSVCRT___p__environ(void);
|
2008-07-03 09:08:22 +02:00
|
|
|
int* __cdecl __p___mb_cur_max(void);
|
|
|
|
unsigned int* __cdecl __p__fmode(void);
|
2011-06-03 15:28:32 +02:00
|
|
|
MSVCRT_wchar_t* __cdecl MSVCRT__wcsdup(const MSVCRT_wchar_t*);
|
|
|
|
MSVCRT_wchar_t*** __cdecl MSVCRT___p__wenviron(void);
|
2013-01-14 13:47:00 +01:00
|
|
|
INT __cdecl MSVCRT_wctomb(char*,MSVCRT_wchar_t);
|
2011-06-03 15:28:32 +02:00
|
|
|
char* __cdecl MSVCRT__strdate(char* date);
|
|
|
|
char* __cdecl MSVCRT__strtime(char* date);
|
2008-12-11 22:28:26 +01:00
|
|
|
int __cdecl _setmbcp(int);
|
2008-07-03 09:08:22 +02:00
|
|
|
int __cdecl MSVCRT__close(int);
|
|
|
|
int __cdecl MSVCRT__dup(int);
|
|
|
|
int __cdecl MSVCRT__dup2(int, int);
|
|
|
|
int __cdecl MSVCRT__pipe(int *, unsigned int, int);
|
2011-06-03 15:28:32 +02:00
|
|
|
MSVCRT_wchar_t* __cdecl MSVCRT__wgetenv(const MSVCRT_wchar_t*);
|
|
|
|
void __cdecl MSVCRT__wsearchenv(const MSVCRT_wchar_t*, const MSVCRT_wchar_t*, MSVCRT_wchar_t*);
|
2010-03-29 00:00:26 +02:00
|
|
|
MSVCRT_intptr_t __cdecl MSVCRT__spawnvpe(int, const char*, const char* const*, const char* const*);
|
2010-04-14 14:34:27 +02:00
|
|
|
void __cdecl MSVCRT__invalid_parameter(const MSVCRT_wchar_t *expr, const MSVCRT_wchar_t *func,
|
|
|
|
const MSVCRT_wchar_t *file, unsigned int line, MSVCRT_uintptr_t arg);
|
2011-05-12 11:38:41 +02:00
|
|
|
int __cdecl MSVCRT__toupper_l(int,MSVCRT__locale_t);
|
|
|
|
int __cdecl MSVCRT__tolower_l(int,MSVCRT__locale_t);
|
2012-12-12 11:16:57 +01:00
|
|
|
int __cdecl MSVCRT__strnicoll_l(const char*, const char*, MSVCRT_size_t, MSVCRT__locale_t);
|
2013-04-29 06:45:16 +02:00
|
|
|
int __cdecl MSVCRT__strncoll_l(const char*, const char*, MSVCRT_size_t, MSVCRT__locale_t);
|
2014-04-16 16:15:07 +02:00
|
|
|
unsigned int __cdecl MSVCRT__get_output_format(void);
|
2013-04-30 14:29:11 +02:00
|
|
|
char* __cdecl MSVCRT_strtok_s(char*, const char*, char**);
|
2010-10-29 15:38:46 +02:00
|
|
|
|
|
|
|
/* Maybe one day we'll enable the invalid parameter handlers with the full set of information (msvcrXXd)
|
|
|
|
* #define MSVCRT_INVALID_PMT(x) MSVCRT_call_invalid_parameter_handler(x, __FUNCTION__, __FILE__, __LINE__, 0)
|
|
|
|
* #define MSVCRT_CHECK_PMT(x) ((x) ? TRUE : MSVCRT_INVALID_PMT(#x),FALSE)
|
|
|
|
* Until this is done, just keep the same semantics for CHECK_PMT(), but without generating / sending
|
|
|
|
* any information
|
|
|
|
* NB : MSVCRT_call_invalid_parameter_handler is a wrapper around MSVCRT__invalid_parameter in order
|
|
|
|
* to do the Ansi to Unicode transformation
|
|
|
|
*/
|
2012-07-26 11:05:32 +02:00
|
|
|
#define MSVCRT_INVALID_PMT(x,err) (*MSVCRT__errno() = (err), MSVCRT__invalid_parameter(NULL, NULL, NULL, 0, 0))
|
|
|
|
#define MSVCRT_CHECK_PMT_ERR(x,err) ((x) || (MSVCRT_INVALID_PMT( 0, (err) ), FALSE))
|
|
|
|
#define MSVCRT_CHECK_PMT(x) MSVCRT_CHECK_PMT_ERR((x), MSVCRT_EINVAL)
|
2004-06-25 03:19:15 +02:00
|
|
|
#endif
|
|
|
|
|
2011-04-27 12:09:01 +02:00
|
|
|
#define MSVCRT__ARGMAX 100
|
2011-04-20 14:42:16 +02:00
|
|
|
typedef int (*puts_clbk_a)(void*, int, const char*);
|
|
|
|
typedef int (*puts_clbk_w)(void*, int, const MSVCRT_wchar_t*);
|
|
|
|
typedef union _printf_arg
|
|
|
|
{
|
|
|
|
void *get_ptr;
|
|
|
|
int get_int;
|
|
|
|
LONGLONG get_longlong;
|
|
|
|
double get_double;
|
|
|
|
} printf_arg;
|
2011-04-20 14:42:26 +02:00
|
|
|
typedef printf_arg (*args_clbk)(void*, int, int, __ms_va_list*);
|
2011-04-20 14:42:16 +02:00
|
|
|
int pf_printf_a(puts_clbk_a, void*, const char*, MSVCRT__locale_t,
|
2012-01-02 21:57:56 +01:00
|
|
|
BOOL, BOOL, args_clbk, void*, __ms_va_list*) DECLSPEC_HIDDEN;
|
2011-04-20 14:42:16 +02:00
|
|
|
int pf_printf_w(puts_clbk_w, void*, const MSVCRT_wchar_t*, MSVCRT__locale_t,
|
2012-01-02 21:57:56 +01:00
|
|
|
BOOL, BOOL, args_clbk, void*, __ms_va_list*) DECLSPEC_HIDDEN;
|
|
|
|
printf_arg arg_clbk_valist(void*, int, int, __ms_va_list*) DECLSPEC_HIDDEN;
|
2011-04-20 14:42:16 +02:00
|
|
|
|
2012-11-06 10:33:20 +01:00
|
|
|
#define MSVCRT_FLT_MIN 1.175494351e-38F
|
2012-12-17 15:19:07 +01:00
|
|
|
#define MSVCRT_DBL_MIN 2.2250738585072014e-308
|
2011-01-18 17:06:07 +01:00
|
|
|
#define MSVCRT__OVERFLOW 3
|
|
|
|
#define MSVCRT__UNDERFLOW 4
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
float f;
|
|
|
|
} MSVCRT__CRT_FLOAT;
|
|
|
|
|
2012-12-17 15:19:07 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
double x;
|
|
|
|
} MSVCRT__CRT_DOUBLE;
|
|
|
|
|
2013-02-24 12:23:29 +01:00
|
|
|
extern char* __cdecl __unDName(char *,const char*,int,malloc_func_t,free_func_t,unsigned short int);
|
|
|
|
|
|
|
|
/* __unDName/__unDNameEx flags */
|
|
|
|
#define UNDNAME_COMPLETE (0x0000)
|
|
|
|
#define UNDNAME_NO_LEADING_UNDERSCORES (0x0001) /* Don't show __ in calling convention */
|
|
|
|
#define UNDNAME_NO_MS_KEYWORDS (0x0002) /* Don't show calling convention at all */
|
|
|
|
#define UNDNAME_NO_FUNCTION_RETURNS (0x0004) /* Don't show function/method return value */
|
|
|
|
#define UNDNAME_NO_ALLOCATION_MODEL (0x0008)
|
|
|
|
#define UNDNAME_NO_ALLOCATION_LANGUAGE (0x0010)
|
|
|
|
#define UNDNAME_NO_MS_THISTYPE (0x0020)
|
|
|
|
#define UNDNAME_NO_CV_THISTYPE (0x0040)
|
|
|
|
#define UNDNAME_NO_THISTYPE (0x0060)
|
|
|
|
#define UNDNAME_NO_ACCESS_SPECIFIERS (0x0080) /* Don't show access specifier (public/protected/private) */
|
|
|
|
#define UNDNAME_NO_THROW_SIGNATURES (0x0100)
|
|
|
|
#define UNDNAME_NO_MEMBER_TYPE (0x0200) /* Don't show static/virtual specifier */
|
|
|
|
#define UNDNAME_NO_RETURN_UDT_MODEL (0x0400)
|
|
|
|
#define UNDNAME_32_BIT_DECODE (0x0800)
|
|
|
|
#define UNDNAME_NAME_ONLY (0x1000) /* Only report the variable/method name */
|
|
|
|
#define UNDNAME_NO_ARGUMENTS (0x2000) /* Don't show method arguments */
|
|
|
|
#define UNDNAME_NO_SPECIAL_SYMS (0x4000)
|
|
|
|
#define UNDNAME_NO_COMPLEX_TYPE (0x8000)
|
|
|
|
|
2001-01-11 00:59:25 +01:00
|
|
|
#endif /* __WINE_MSVCRT_H */
|