Re: msvcrt: Add _atoflt and _atoflt_l implementations
Nikolay Sivov <nsivov(a)codeweavers.com> writes:
@@ -333,6 +333,123 @@ double CDECL MSVCRT__atof_l( const char *str, MSVCRT__locale_t locale) }
/********************************************************************* + * _atoflt_l (MSVCRT.@) + * + * Not exported by native msvcrt + */
It is exported, that's why it's in the spec file. The non _l version isn't, but it doesn't need to be, the wrappers can go in the individual msvcr* dlls. -- Alexandre Julliard julliard(a)winehq.org
On 1/14/2011 19:12, Alexandre Julliard wrote:
Nikolay Sivov<nsivov(a)codeweavers.com> writes:
@@ -333,6 +333,123 @@ double CDECL MSVCRT__atof_l( const char *str, MSVCRT__locale_t locale) }
/********************************************************************* + * _atoflt_l (MSVCRT.@) + * + * Not exported by native msvcrt + */ It is exported, that's why it's in the spec file. The non _l version isn't, but it doesn't need to be, the wrappers can go in the individual msvcr* dlls. Ok, I checked mine from XP and it doesn't have this export, that's why there's a note. Will resend.
participants (2)
-
Alexandre Julliard -
Nikolay Sivov