Hi, I'd like to get people's opinions on how I should link to the _wtol function from a Wine DLL. Should I: a) Link to NTDLL and use the function there b) Link to MSVCRT and use the function there c) Create a new function in unicode.h d) Copy the function into my DLL Rob
"Robert Shearman" <R.J.Shearman(a)warwick.ac.uk> wrote:
I'd like to get people's opinions on how I should link to the _wtol function from a Wine DLL. Should I:
a) Link to NTDLL and use the function there b) Link to MSVCRT and use the function there c) Create a new function in unicode.h d) Copy the function into my DLL
e) use strtolW provided by libwine_unicode and declared in unicode.h -- Dmitry.
I'd like to get people's opinions on how I should link to the _wtol function
e) use strtolW provided by libwine_unicode and declared in unicode.h
In that case should I reimplement _wtol in NTDLL function using strtolW? The rest of the functions in wcstring.c call their libunicode versions, but this one doesn't. Rob
"Robert Shearman" <R.J.Shearman(a)warwick.ac.uk> wrote:
e) use strtolW provided by libwine_unicode and declared in unicode.h
In that case should I reimplement _wtol in NTDLL function using strtolW? The rest of the functions in wcstring.c call their libunicode versions, but this one doesn't.
No. Current _wtol implementation is fine. -- Dmitry.
participants (2)
-
Dmitry Timoshkov -
Robert Shearman