interop & _wputenv_s

  • Thread starter Thread starter Lloyd Dupont
  • Start date Start date
L

Lloyd Dupont

I can't find the dll in which _wputenv_s is defined...
annoying when you want to interop with it.....

it's defined in <stdlib.h>,
I tried Kernel32 & User32 but it didn't work... :(
 
I can't find the dll in which _wputenv_s is defined...
annoying when you want to interop with it.....

it's defined in <stdlib.h>,
I tried Kernel32 & User32 but it didn't work... :(

Well it's a CRT function, not a Windows API function, so it's
definitely not in kernel32 or user32. If it's in any DLL, it would be
MsvcrtXX.dll (or whatever it's called these days, the C runtime DLL).


BTW, you can probably get better answers to your C++ questions in the
group microsoft.public.dotnet.languages.vc. This isn't related to the
..NET framework.



Mattias
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top