mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-05-04 11:50:05 +02:00

git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorSoftware@343 951219d9-93cf-4727-9268-0efd64621fa3
34 lines
715 B
C
34 lines
715 B
C
#ifdef SLS_RECEIVER_FUNCTION_LIST
|
|
|
|
|
|
//int initializeReceiver();
|
|
|
|
void closeFile();
|
|
|
|
enum runStatus getReceiverStatus();
|
|
|
|
char* getFileName();
|
|
char* setFileName(char fName[]);
|
|
char* getFilePath();
|
|
char* setFilePath(char fName[]);
|
|
int getFileIndex();
|
|
int setFileIndex(int index);
|
|
int getFrameIndex();
|
|
int getAcquisitionIndex();
|
|
int getFramesCaught();
|
|
int getTotalFramesCaught();
|
|
int resetTotalFramesCaught(int index);
|
|
|
|
void* startListening(void *arg);
|
|
|
|
int startReceiver();
|
|
int stopReceiver();
|
|
|
|
char* readFrame();
|
|
|
|
//int setUDPPortNumber(int p=-1); //sets/gets port number to listen to for data from the detector
|
|
//int setTCPPortNumber(int p=-1); //sets/get port number for communication to client
|
|
|
|
|
|
#endif
|