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
 
Back
Top