iPAQSetWLANRadio (ipaqutil)
Last changed: Ben Clayton-15.207.255.7

.
Summary
Turn on/off the wireless networking on an iPAQ.

C# Signature:

[DllImport("ipaqutil.dll", SetLastError=true)]
static extern bool iPAQSetWLANRadio(ref int status);

VB Signature:

  Declare Function iPAQSetWLANRadio Lib "ipaqutil.dll" (ByRef status As Integer) As Boolean

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code C#:

int ret = Convert.ToInt32(true);

if (iPAQSetWLANRadio(ref ret) == false)

{

    // failed..?

}

Sample Code VB:

If iPAQSetWLANRadio(1) Then

   'Turn off

Else

   'Failed

End If

Documentation