mirror of
https://github.com/sheumann/AFPBridge.git
synced 2024-11-01 01:05:06 +00:00
33c4871183
This is necessary because FIListSessions2 has a bug that causes it to return garbage in the server/zone fields for DSI sessions. (The bug is essentially that PFI is indexing into its own tables based on the ASP/DSI session number, rather than properly using a PFI-level session index.)
15 lines
322 B
C
15 lines
322 B
C
#ifndef CMDPROC_H
|
|
#define CMDPROC_H
|
|
|
|
void cmdProc(void);
|
|
void nbpCmdProc(void);
|
|
void pfiLoginCmdProc(void);
|
|
extern LongWord jslOldPFILogin;
|
|
void pfiLogin2CmdProc(void);
|
|
extern LongWord jslOldPFILogin2;
|
|
void pfiListSessions2CmdProc(void);
|
|
extern LongWord jslOldPFIListSessions2;
|
|
void CallCompletionRoutine(void *);
|
|
|
|
#endif
|