19 lines
337 B
C
19 lines
337 B
C
//
|
|
// Created by xajhuang on 2022/9/2.
|
|
//
|
|
|
|
#ifndef VCPE_PROJECT_DHCPD_H
|
|
#define VCPE_PROJECT_DHCPD_H
|
|
#define API_PUBLIC __attribute__((visibility("default")))
|
|
#define API_EXPORT API_PUBLIC
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
API_EXPORT int dhcpd_main(int argc, char **argv);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif//VCPE_PROJECT_DHCPD_H
|