📄 oid.h
字号:
/*
MikroTik PPPoE - MikroTik PPP over Ethernet client for Windows
Copyright (C), 2001 MikroTikls
The contents of this program are subject to the Mozilla Public License
Version 1.1; you may not use this program except in compliance with the
License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
http://www.mikrotik.com
mt@mt.lv
*/
#ifndef _PPPOE_OID_H_
#define _PPPOE_OID_H_
#include "my.h"
#include "adapter.h"
typedef NDIS_STATUS (*OID_HANDLERFUNC)(PADAPT, PDATABUF_DESCR);
typedef struct _OID_HANDLER {
NDIS_OID oid;
ULONG requestedLen;
OID_HANDLERFUNC handler;
} OID_HANDLER, *POID_HANDLER;
extern OID_HANDLER queryOids[];
extern OID_HANDLER setOids[];
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -