windows-nt/Source/XPSP1/NT/net/snmp/compiler/mibccv2/configs.hpp
2020-09-26 16:20:57 +08:00

24 lines
347 B
C++

#ifndef _CONFIGS_HPP
#define _CONFIGS_HPP
#define CFG_PRINT_LOGO 0x01
#define CFG_PRINT_TREE 0x02
#define CFG_PRINT_NODE 0x04
#define CFG_VERB_ERROR 0x08
#define CFG_VERB_WARNING 0x10
#define CFG_DEF_MAXERRORS 10
class Configs
{
public:
LPSTR m_pszOutputFilename;
int m_nMaxErrors;
DWORD m_dwFlags;
Configs();
~Configs();
};
#endif