📦 NikithShetty / Virtual-wifi

📄 DOT11_BSSID_LIST.cs · 14 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14using System.Runtime.InteropServices;

namespace VirtualRouter.Wlan.WinAPI
{
    [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
    public struct DOT11_BSSID_LIST
    {
        NDIS_OBJECT_HEADER header;
        uint uNumOfEntries; // ULONG
        uint uTotalNumOfEntries; // ULONG
        DOT11_MAC_ADDRESS[] BSSIDs;
    }
}