?? ftps_init.c
字號:
/****************************************************************************
Copyright (C) Cambridge Silicon Radio Ltd. 2004
FILE NAME
ftps_init.c
DESCRIPTION
Initialisation for the File Transfer Profile Server(ftps) library
*/
#include <message.h>
#include "ftps.h"
#include "ftps_private.h"
/****************************************************************************
NAME
ftpsGetTheTask
DESCRIPTION
This function returns the ftps library task so that the ftps library can use it.
RETURNS
The ftps library task.
*/
Task ftpsGetTheTask(void)
{
ftpsState *theFtps = PanicUnlessNew(ftpsState);
theFtps->task.handler = ftpsHandler;
return &(theFtps->task);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -