Reactos
at master 13 lines 235 B view raw
1#ifndef __WLANTYPES_H__ 2#define __WLANTYPES_H__ 3 4typedef enum _DOT11_BSS_TYPE { 5 dot11_BSS_type_infrastructure = 1, 6 dot11_BSS_type_independent, 7 dot11_BSS_type_any 8} DOT11_BSS_TYPE; 9 10#define DOT11_SSID_MAX_LENGTH 32 11 12#endif 13