* include/mprapi.h: New file.

* include/routprot.h: New file.
	* include/ipxrtdef.h: New file.
	* include/ipxconst.h: New file.
	* include/stm.h: New file.
This commit is contained in:
Dimitri Papadopoulos
2006-05-02 10:51:52 +00:00
parent 1f498f6aea
commit 5248b38cc7
6 changed files with 370 additions and 0 deletions

View File

@ -0,0 +1,21 @@
#ifndef _STM_H
#define _STM_H
#if __GNUC__ >= 3
#pragma GCC system_header
#endif
#ifdef __cplusplus
extern "C" {
#endif
#if (_WIN32_WINNT >= 0x0500)
#define ADMIN_STATE_DISABLED 0x00000001
#define ADMIN_STATE_ENABLED 0x00000002
#define ADMIN_STATE_ENABLED_ONLY_FOR_NETBIOS_STATIC_ROUTING 0x00000003
#define ADMIN_STATE_ENABLED_ONLY_FOR_OPER_STATE_UP 0x00000004
#endif
#ifdef __cplusplus
}
#endif
#endif