first commit

This commit is contained in:
2026-07-11 18:11:03 +08:00
commit 19cafad13b
106 changed files with 11669 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
#ifndef FACEDETECTION_EXPORT_H
#define FACEDETECTION_EXPORT_H
#ifdef FACEDETECTION_STATIC_DEFINE
# define FACEDETECTION_EXPORT
# define FACEDETECTION_NO_EXPORT
#else
# ifndef FACEDETECTION_EXPORT
# ifdef facedetection_EXPORTS
/* We are building this library */
# define FACEDETECTION_EXPORT __attribute__((visibility("default")))
# else
/* We are using this library */
# define FACEDETECTION_EXPORT __attribute__((visibility("default")))
# endif
# endif
# ifndef FACEDETECTION_NO_EXPORT
# define FACEDETECTION_NO_EXPORT __attribute__((visibility("hidden")))
# endif
#endif
#ifndef FACEDETECTION_DEPRECATED
# define FACEDETECTION_DEPRECATED __attribute__ ((__deprecated__))
#endif
#ifndef FACEDETECTION_DEPRECATED_EXPORT
# define FACEDETECTION_DEPRECATED_EXPORT FACEDETECTION_EXPORT FACEDETECTION_DEPRECATED
#endif
#ifndef FACEDETECTION_DEPRECATED_NO_EXPORT
# define FACEDETECTION_DEPRECATED_NO_EXPORT FACEDETECTION_NO_EXPORT FACEDETECTION_DEPRECATED
#endif
#if 0 /* DEFINE_NO_DEPRECATED */
# ifndef FACEDETECTION_NO_DEPRECATED
# define FACEDETECTION_NO_DEPRECATED
# endif
#endif
#endif /* FACEDETECTION_EXPORT_H */