NetSim Source Code Help v14.4
All 13 Components
 
Loading...
Searching...
No Matches
P2P_Enum.h
1/************************************************************************************
2* Copyright (C) 2023 *
3* TETCOS, Bangalore. India *
4* *
5* Tetcos owns the intellectual property rights in the Product and its content. *
6* The copying, redistribution, reselling or publication of any or all of the *
7* Product or its content without express prior written consent of Tetcos is *
8* prohibited. Ownership and / or any other right relating to the software and all *
9* intellectual property rights therein shall remain at all times with Tetcos. *
10* *
11* This source code is licensed per the NetSim license agreement. *
12* *
13* No portion of this source code may be used as the basis for a derivative work, *
14* or used, for any purpose other than its intended use per the NetSim license *
15* agreement. *
16* *
17* This source code and the algorithms contained within it are confidential trade *
18* secrets of TETCOS and may not be used as the basis for any other software, *
19* hardware, product or service. *
20* *
21* Author: Shashi Kant Suman *
22* *
23* ----------------------------------------------------------------------------------*/
24#include "EnumString.h"
25
26BEGIN_ENUM(P2P_Subevent)
27{
28 //Events that changes interface state
29 DECL_ENUM_ELEMENT_WITH_VAL(P2P_LINK_UP, MAC_PROTOCOL_P2P * 100),
30 DECL_ENUM_ELEMENT(P2P_LINK_DOWN),
31 DECL_ENUM_ELEMENT(P2P_MAC_IDLE),
32}
33#pragma warning(disable:4028)
34END_ENUM(P2P_Subevent);
35#pragma warning(default:4028)
36