1996-08-11 17:49:51 +02:00
|
|
|
/*
|
2001-01-12 21:42:06 +01:00
|
|
|
* Old C RunTime DLL - All functionality is provided by msvcrt.
|
1996-08-11 17:49:51 +02:00
|
|
|
*
|
2000-11-08 23:42:53 +01:00
|
|
|
* Copyright 2000 Jon Griffiths
|
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
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1996-08-11 17:49:51 +02:00
|
|
|
*/
|
2002-06-13 23:42:01 +02:00
|
|
|
|
2000-12-02 00:53:46 +01:00
|
|
|
#include "config.h"
|
2001-01-12 21:42:06 +01:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
2002-06-13 23:42:01 +02:00
|
|
|
#define USE_MSVCRT_PREFIX
|
|
|
|
#include "msvcrt/sys/stat.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
1999-04-03 18:22:01 +02:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(crtdll);
|
1996-08-11 17:49:51 +02:00
|
|
|
|
2001-02-20 02:56:46 +01:00
|
|
|
/* from msvcrt */
|
2001-04-11 01:25:40 +02:00
|
|
|
extern void __getmainargs( int *argc, char ***argv, char ***envp,
|
|
|
|
int expand_wildcards, int *new_mode );
|
2001-02-20 02:56:46 +01:00
|
|
|
|
2001-01-12 21:42:06 +01:00
|
|
|
/* The following data items are not exported from msvcrt */
|
|
|
|
unsigned int CRTDLL__basemajor_dll;
|
|
|
|
unsigned int CRTDLL__baseminor_dll;
|
|
|
|
unsigned int CRTDLL__baseversion_dll;
|
|
|
|
unsigned int CRTDLL__cpumode_dll;
|
|
|
|
unsigned int CRTDLL__osmajor_dll;
|
|
|
|
unsigned int CRTDLL__osminor_dll;
|
|
|
|
unsigned int CRTDLL__osmode_dll;
|
|
|
|
unsigned int CRTDLL__osversion_dll;
|
2000-12-12 01:37:27 +01:00
|
|
|
|
2002-06-13 23:42:01 +02:00
|
|
|
/* dev_t is a short in crtdll but an unsigned int in msvcrt */
|
|
|
|
typedef short crtdll_dev_t;
|
|
|
|
|
|
|
|
struct crtdll_stat
|
|
|
|
{
|
|
|
|
crtdll_dev_t st_dev;
|
|
|
|
_ino_t st_ino;
|
|
|
|
unsigned short st_mode;
|
|
|
|
short st_nlink;
|
|
|
|
short st_uid;
|
|
|
|
short st_gid;
|
|
|
|
crtdll_dev_t st_rdev;
|
2002-07-31 22:04:57 +02:00
|
|
|
MSVCRT(_off_t) st_size;
|
2002-06-13 23:42:01 +02:00
|
|
|
MSVCRT(time_t) st_atime;
|
|
|
|
MSVCRT(time_t) st_mtime;
|
|
|
|
MSVCRT(time_t) st_ctime;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* convert struct _stat from crtdll format to msvcrt format */
|
|
|
|
static void convert_struct_stat( struct crtdll_stat *dst, const struct _stat *src )
|
|
|
|
{
|
|
|
|
dst->st_dev = src->st_dev;
|
|
|
|
dst->st_ino = src->st_ino;
|
|
|
|
dst->st_mode = src->st_mode;
|
|
|
|
dst->st_nlink = src->st_nlink;
|
|
|
|
dst->st_uid = src->st_uid;
|
|
|
|
dst->st_gid = src->st_gid;
|
|
|
|
dst->st_rdev = src->st_rdev;
|
|
|
|
dst->st_size = src->st_size;
|
|
|
|
dst->st_atime = src->st_atime;
|
|
|
|
dst->st_mtime = src->st_mtime;
|
|
|
|
dst->st_ctime = src->st_ctime;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-22 12:37:57 +02:00
|
|
|
/*********************************************************************
|
2002-11-05 00:53:41 +01:00
|
|
|
* DllMain (CRTDLL.init)
|
1999-05-22 12:37:57 +02:00
|
|
|
*/
|
2002-11-05 00:53:41 +01:00
|
|
|
BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved)
|
1999-05-22 12:37:57 +02:00
|
|
|
{
|
2002-10-19 01:48:57 +02:00
|
|
|
TRACE("(%p,%ld,%p)\n",hinstDLL,fdwReason,lpvReserved);
|
2000-12-16 22:53:56 +01:00
|
|
|
|
2001-01-12 21:42:06 +01:00
|
|
|
if (fdwReason == DLL_PROCESS_ATTACH)
|
2000-12-16 22:53:56 +01:00
|
|
|
{
|
2001-01-12 21:42:06 +01:00
|
|
|
DWORD version = GetVersion();
|
|
|
|
CRTDLL__basemajor_dll = (version >> 24) & 0xFF;
|
|
|
|
CRTDLL__baseminor_dll = (version >> 16) & 0xFF;
|
|
|
|
CRTDLL__baseversion_dll = (version >> 16);
|
|
|
|
CRTDLL__cpumode_dll = 1; /* FIXME */
|
|
|
|
CRTDLL__osmajor_dll = (version>>8) & 0xFF;
|
|
|
|
CRTDLL__osminor_dll = (version & 0xFF);
|
|
|
|
CRTDLL__osmode_dll = 1; /* FIXME */
|
|
|
|
CRTDLL__osversion_dll = (version & 0xFFFF);
|
2000-12-16 22:53:56 +01:00
|
|
|
}
|
2001-01-12 21:42:06 +01:00
|
|
|
return TRUE;
|
2000-12-16 22:53:56 +01:00
|
|
|
}
|
2001-02-20 02:56:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* __GetMainArgs (CRTDLL.@)
|
|
|
|
*/
|
2001-04-11 01:25:40 +02:00
|
|
|
void __GetMainArgs( int *argc, char ***argv, char ***envp, int expand_wildcards )
|
2001-02-20 02:56:46 +01:00
|
|
|
{
|
2001-02-21 03:20:08 +01:00
|
|
|
int new_mode = 0;
|
2001-04-11 01:25:40 +02:00
|
|
|
__getmainargs( argc, argv, envp, expand_wildcards, &new_mode );
|
2001-02-20 02:56:46 +01:00
|
|
|
}
|
2002-06-13 23:42:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _fstat (CRTDLL.@)
|
|
|
|
*/
|
|
|
|
int CRTDLL__fstat(int fd, struct crtdll_stat* buf)
|
|
|
|
{
|
2002-07-31 22:04:57 +02:00
|
|
|
extern int _fstat(int,struct _stat*);
|
2002-06-13 23:42:01 +02:00
|
|
|
struct _stat st;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!(ret = _fstat( fd, &st ))) convert_struct_stat( buf, &st );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _stat (CRTDLL.@)
|
|
|
|
*/
|
|
|
|
int CRTDLL__stat(const char* path, struct crtdll_stat * buf)
|
|
|
|
{
|
2002-07-31 22:04:57 +02:00
|
|
|
extern int _stat(const char*,struct _stat*);
|
2002-06-13 23:42:01 +02:00
|
|
|
struct _stat st;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!(ret = _stat( path, &st ))) convert_struct_stat( buf, &st );
|
|
|
|
return ret;
|
|
|
|
}
|
2002-07-23 04:08:12 +02:00
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _strdec (CRTDLL.@)
|
|
|
|
*/
|
|
|
|
char *_strdec(const char *str1, const char *str2)
|
|
|
|
{
|
|
|
|
return (char *)(str2 - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _strinc (CRTDLL.@)
|
|
|
|
*/
|
|
|
|
char *_strinc(const char *str)
|
|
|
|
{
|
|
|
|
return (char *)(str + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _strncnt (CRTDLL.@)
|
|
|
|
*/
|
|
|
|
size_t _strncnt(const char *str, size_t maxlen)
|
|
|
|
{
|
|
|
|
size_t len = strlen(str);
|
|
|
|
return (len > maxlen) ? maxlen : len;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _strnextc (CRTDLL.@)
|
|
|
|
*/
|
|
|
|
unsigned int _strnextc(const char *str)
|
|
|
|
{
|
|
|
|
return (unsigned int)str[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _strninc (CRTDLL.@)
|
|
|
|
*/
|
|
|
|
char *_strninc(const char *str, size_t len)
|
|
|
|
{
|
|
|
|
return (char *)(str + len);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _strspnp (CRTDLL.@)
|
|
|
|
*/
|
|
|
|
char *_strspnp( const char *str1, const char *str2)
|
|
|
|
{
|
|
|
|
str1 += strspn( str1, str2 );
|
|
|
|
return *str1 ? (char*)str1 : NULL;
|
|
|
|
}
|