You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
621 B
27 lines
621 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1996 - 1998.
|
|
//
|
|
// File: wcstoi64.hxx
|
|
//
|
|
// Contents:
|
|
//
|
|
// History:
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#define _wcstoui64 My_wcstoui64
|
|
#define _wcstoi64 My_wcstoi64
|
|
|
|
unsigned _int64 __cdecl _wcstoui64 (
|
|
const wchar_t *nptr,
|
|
wchar_t **endptr,
|
|
int ibase);
|
|
|
|
_int64 __cdecl _wcstoi64 (
|
|
const wchar_t *nptr,
|
|
wchar_t **endptr,
|
|
int ibase);
|