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.
34 lines
423 B
34 lines
423 B
/*++
|
|
|
|
Copyright (c) 2001 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
crack.hxx
|
|
|
|
Abstract:
|
|
|
|
crack
|
|
|
|
Author:
|
|
|
|
Larry Zhu (LZhu) June 1, 2002
|
|
|
|
Environment:
|
|
|
|
User Mode
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef CRACK_HXX
|
|
#define CRACK_HXX
|
|
|
|
#if defined(UNICODE) || defined(_UNICODE)
|
|
#define lstrtol wcstol
|
|
#else
|
|
#define lstrtol strtol
|
|
#endif
|
|
|
|
#endif // #ifndef CRACK_HXX
|