📄 netinfoprefssource.h
字号:
/* File: NetInfoPrefsSource.h Contains: Implements the PrefsSource interface wrt NetInfo database Written by: Denis Serenyi Change History (most recent first): */#ifndef __NETINFOPREFSSOURCE_H__#define __NETINFOPREFSSOURCE_H__#include "PrefsSource.h"#include "OSHeaders.h"class NetInfoPrefsSource : public PrefsSource{ public: NetInfoPrefsSource(); virtual ~NetInfoPrefsSource() {} virtual int GetValue(const char* inKey, char* ioValue); virtual int GetValueByIndex(const char* inKey, UInt32 inIndex, char* ioValue); void SetValue(char* inKey, char* inValue); void SetValueByIndex(char* inKey, char* inValue, UInt32 inIndex);};#endif //__NETINFOPREFSSOURCE_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -