msvcp90: Use streamoff in std::_BADOFF definition.

This commit is contained in:
Piotr Caban 2012-08-15 10:26:48 +02:00 committed by Alexandre Julliard
parent 625940a560
commit 1202e8bf87
1 changed files with 2 additions and 2 deletions

View File

@ -104,11 +104,11 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
/* ?_BADOFF@std@@3JB -> long const std::_BADOFF */
/* ?_BADOFF@std@@3_JB -> __int64 const std::_BADOFF */
const INT_PTR std_BADOFF = -1;
const streamoff std_BADOFF = -1;
/* ?_BADOFF_func@std@@YAABJXZ -> long const & __cdecl std::_BADOFF_func(void) */
/* ?_BADOFF_func@std@@YAAEB_JXZ -> __int64 const & __ptr64 __cdecl std::_BADOFF_func(void) */
const INT_PTR * __cdecl std_BADOFF_func(void)
const streamoff * __cdecl std_BADOFF_func(void)
{
return &std_BADOFF;
}