Marcus Meissner <[EMAIL PROTECTED]> writes:

> Let me guess, an approach like:
> 
>     FARPROC   fnVSPRINTFA;
>     HMODULE   huser32 = LoadLibrary("user32.dll");
> 
>     fnVSPRINTFA = GetProcAddress(huser32,"wvsprintfA");
> 
>     fnVSPRINTFA(....); 
> 
> Is not acceptable either ;)

Nope... there is a vsnprintf exported from ntdll, so you could use
that. You just have to implement it ;-)

-- 
Alexandre Julliard
[EMAIL PROTECTED]

Reply via email to