Leaked source code of windows server 2003
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

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1996 - 1998.
  5. //
  6. // File: wcstoi64.hxx
  7. //
  8. // Contents:
  9. //
  10. // History:
  11. //
  12. //--------------------------------------------------------------------------
  13. #pragma once
  14. #define _wcstoui64 My_wcstoui64
  15. #define _wcstoi64 My_wcstoi64
  16. unsigned _int64 __cdecl _wcstoui64 (
  17. const wchar_t *nptr,
  18. wchar_t **endptr,
  19. int ibase);
  20. _int64 __cdecl _wcstoi64 (
  21. const wchar_t *nptr,
  22. wchar_t **endptr,
  23. int ibase);