how to use native wifi direct in native winapi? - windows

I want to use native WIFI DIRECT API in WINDOWS API.
(NOT USE Proximity in WinRT)
but there is nowhere sample or tutorial.
how to use native wifi direct in native winapi?
or where is sample or tutorial.

According to MSDN, WiFi Direct API is available for Desktop Apps.
So if you enable C++/CX as described here you can integrate code from Microsoft's examples into your app.

Related

Are there any obstacles of using windows Bluetooth API from the driver?

Google/MSDN say nothing about that but I'm still suspicious: it is possible to build a driver, it is possible to build a [C++] Bluetooth application, but what if I use BT API from driver? Anyone with related experience?
Figure out by myself: BLE API which is available in Win 10 is part of the new UWP API. We found no way to use UWP from driver - so this is not possible.

there is a face detection API for WinRT?

I see statements on the web about Windows 8 supporting face detection. Is this face detection or face recognition or both? (I don't care so much about recognition.) Is it in an API available inside a WinRT application and/or .Net? Where's the documentation for this API? (MSDN and Google both give me links to Windows Phone 7 stuff.)
There is no built-in API for this in WinRT. You will have to use a web service for this functionality or build one yourself.

Is the PC/SC API accessible for the windows-phone-7 platform?

I browsed through the Windows Phone 7 documentation web site, and was unable to find if it is possible to write an application on this platform that can communicate with the smarphone's SIM card using APDU commands/responses (ISO7816).
Is this possible to use PC/SC or some other API for this, and if yes, where can I find some documentation about it?
It's not supported on the phone.
May be able to do it with interop unlocked, but then you cannot submit for the marketplace.

Bluetooth Connection?

I am facing some issues connecting with 32feet.net library in my C# window mobile application?
Can you please guide me how to connect with blue tooth with this library?
What do you want to accomplish and what issues do you have?
I have a short blog post describing how to enumerate Bluetooth devices using .NETCF and 32feet.NET
http://christian-helle.blogspot.com/2010/07/enumerating-bluetooth-devices-from.html

How to scan Wifi access point on Windows Mobile?

I need to scan Wifi access point on Windows Mobile and connect the one of scanned results.
Currently I am using C# language, Windows Mobile 6.5 device, also to scan I am using the below code.
[DllImport(wlanapi.dll", SetLastError=true)]
I am using wlanapi.dll, but it seems that not possible to use on Mobile.
Does anyone know about the belows.
Could I use the dll in Windows Mobile 6.5 to scan and connect?
If the 1 is not possible, please let me know the different methods..
Please give me the clues.
wlanapi.dll doesn't exist in WinMo/WinCE. You have to use an API that is supported.
Most WinMo WiFi drivers (though probably not all) support the Wireless Zero Config (WZC) set of APIs. The native versions of these APIs, like WZCQueryInterface, are outlined in MSDN.
Microsoft does not provide any managed interface for these APIs, in fact the native documentation for them is pretty bad too. The definitive "example" of it's use is in the NETUI component source of Platform Builder. Gettign the eval version just for the source is very worthwhile if you plan to do much WinCE/WinMo development.
From a managed perspective I wrote an MSDN article back in '06 that talks about using the SDF for getting network info. The SDF has been reworked a lot since then, especially in the WZC area, but it's still pretty similar.
I did an updated blog post in '07 about custom-drawn ListBoxes, and while that's not what you're after, the data being displayed is wireless network info, which is in line with what you're after.

Resources