19 lines
351 B
C
19 lines
351 B
C
//
|
|
// Created by xajhuang on 2022/10/26.
|
|
//
|
|
|
|
#ifndef VCPE_PROJECT_DUALSVR_H
|
|
#define VCPE_PROJECT_DUALSVR_H
|
|
#define API_PUBLIC __attribute__((visibility("default")))
|
|
#define API_EXPORT API_PUBLIC
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
API_EXPORT int dual_server_main(int argc, char **argv);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif//VCPE_PROJECT_DUALSVR_H
|