37 lines
864 B
C
37 lines
864 B
C
/****************************************************************************
|
|
Worker::RecvSystem process main
|
|
-----------------------------------------
|
|
|
|
begin : 2015/06/02
|
|
copyright : (C) 2005 Solbox Inc.
|
|
author : Dev Storage Team
|
|
email : huibong@solbox.com
|
|
version : 3.5
|
|
|
|
CopyRight(C) 2005 Solbox Inc. All Rights reserved.
|
|
Redistribution and use in source and binary forms, with or with out
|
|
modification, are not permitted in outside of Solbox Inc.
|
|
*****************************************************************************/
|
|
|
|
#ifndef __WORKER_RECV_SYSTEM_H__
|
|
#define __WORKER_RECV_SYSTEM_H__
|
|
|
|
#include <unistd.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
// Worker::RecvSystem 프로세스의 Main 역활을 수행하기 위한 함수.
|
|
int WorkerRecvSystemMain( void );
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif /* __WORKER_RECV_SYSTEM_H__ */
|
|
|