PInvoke
-
How does .NET handles a winapi that doesn't exsist on current OS, for example: If it was proggramed on Windows 7 64bit and then attempted to use on Windows XP 32 bit? API IsWow64Process does exsist in 64 bit OS, but does it exsist in 32bit version? edit: Re-edited question
-
How does .NET handles a winapi that doesn't exsist on current OS, for example: If it was proggramed on Windows 7 64bit and then attempted to use on Windows XP 32 bit? API IsWow64Process does exsist in 64 bit OS, but does it exsist in 32bit version? edit: Re-edited question
P/Invoke problems are signaled through exceptions, see here[^] for some details. So you may choose to use some try-catch construct. :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum
Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.
-
P/Invoke problems are signaled through exceptions, see here[^] for some details. So you may choose to use some try-catch construct. :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum
Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.
Thank you, as other question does IsWow64Process exsist in 32 bit Windows?
-
Thank you, as other question does IsWow64Process exsist in 32 bit Windows?
I don't know. Read the documentation. Google. Try it. :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum
Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.
-
Thank you, as other question does IsWow64Process exsist in 32 bit Windows?