[DllImport("ipaqutil.dll", SetLastError=true)]
static extern bool iPAQSetWLANRadio(ref int status);
Declare Function iPAQSetWLANRadio Lib "ipaqutil.dll" (ByRef status As Integer) As Boolean
None.
Do you know one? Please contribute it!
None.
Please add some!
int ret = Convert.ToInt32(true);
if (iPAQSetWLANRadio(ref ret) == false)
{
// failed..?
}
If iPAQSetWLANRadio(1) Then
'Turn off
Else
'Failed
End If