summaryrefslogtreecommitdiff
path: root/core/src/xmake/engine_pool.c
diff options
context:
space:
mode:
authorruki <[email protected]>2025-05-06 22:53:19 +0800
committerruki <[email protected]>2025-08-28 11:35:53 +0800
commitf2984b3ba5cc2b9c52891ffb44600be3dec23b52 (patch)
treeea3d7a25bcb0b8eb37c05a575e0df64d9dbf8ef8 /core/src/xmake/engine_pool.c
parent2088868b56f2c70cd4e9e72803ced3197ceba010 (diff)
add engine pool stub
Diffstat (limited to 'core/src/xmake/engine_pool.c')
-rw-r--r--core/src/xmake/engine_pool.c48
1 files changed, 48 insertions, 0 deletions
diff --git a/core/src/xmake/engine_pool.c b/core/src/xmake/engine_pool.c
new file mode 100644
index 000000000..0a2102ee1
--- /dev/null
+++ b/core/src/xmake/engine_pool.c
@@ -0,0 +1,48 @@
+/*!A cross-platform build utility based on Lua
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * Copyright (C) 2015-present, TBOOX Open Source Group.
+ *
+ * @author ruki
+ * @file engine_pool.c
+ *
+ */
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * trace
+ */
+#define TB_TRACE_MODULE_NAME "engine_pool"
+#define TB_TRACE_MODULE_DEBUG (0)
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * includes
+ */
+#include "xmake.h"
+#include "engine.h"
+#include "engine_pool.h"
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * types
+ */
+
+// the engine pool type
+typedef struct __xm_engine_pool_t
+{
+
+}xm_engine_pool_t;
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * implementation
+ */
+