serialutils.h
来自「Symbian OS C++ for Mobile Phones v3 Exam」· C头文件 代码 · 共 26 行
H
26 行
// Copyright (c) 2004 - 2007, Symbian Software Ltd. All rights reserved.
#ifndef SERIALUTILS_H
#define SERIALUTILS_H
#include <transportinterface.h>
class SerialUtils
/**
This class contains functions to load and unload the
serial device drivers. These are implemented in a shared
library because they are used by both infrared socket, and
IR / serial RS232 connections.
*/
{
public:
IMPORT_C static void LoadDeviceDriversL(TBool& aLoadedLdd, TBool &aLoadedPdd);
IMPORT_C static void FreeDeviceDrivers(TBool aLoadedLdd, TBool aLoadedPdd);
};
#endif // #ifndef SERIALUTILS_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?