Ignore:
Timestamp:
Jul 28, 2010, 8:14:30 PM (15 years ago)
Author:
dmik
Message:

Build minivcrt.lib (accessible through minivcrt.h) that aims at providing MSVCRT-specific functions such as the wide character version of _getcwd() and similar to other runtimes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/msvcrt/wcs.c

    r10005 r21398  
    1919 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    2020 */
     21
     22#ifndef __MINIVCRT__
     23
    2124#include <limits.h>
    2225#include <stdlib.h>
     
    3841WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
    3942
     43#else /* !__MINIVCRT__ */
     44
     45#include <string.h>
     46#include <sys/limits.h>
     47
     48#include <winbase.h>
     49
     50#include "minivcrt.h"
     51#include "minivcrt_internal.h"
     52
     53#include "winternl.h"
     54#include "wine/unicode.h"
     55
     56#endif /* !__MINIVCRT__ */
    4057
    4158/* INTERNAL: MSVCRT_malloc() based wstrndup */
Note: See TracChangeset for help on using the changeset viewer.