📄 asdfiler.c
字号:
/* --------------------------------------------------------------------
Project: HP200LX FILER PROTOCOL (CLIENT) COMMUNICATIONS FOR PAL
Module: ASDFILER.C
Author: Harry Konstas
Started: 17. Oct. 95
Subject: Request remote directory from Server
-------------------------------------------------------------------- */
/* --------------------------------------------------------------------
standard includes
-------------------------------------------------------------------- */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/* --------------------------------------------------------------------
local includes
-------------------------------------------------------------------- */
#include "pal.h"
#include "palpriv.h"
/* --------------------------------------------------------------------
Request Remote directory from server
-------------------------------------------------------------------- */
int FilerAskDir(FILERCOM *pFiler, char *RemoteDir)
{
/* send directory name */
if(FilerRequest(pFiler, ASK_DIR, strlen(RemoteDir),
RemoteDir) == NO_RESPONSE) {
return NO_RESPONSE;
}
return SERVER_ACK;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -