Reorganise src directory

This commit is contained in:
2024-10-06 12:54:04 +01:00
parent e9451f10f8
commit a48002996e
20 changed files with 7 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
#ifndef SHELL_UTILS_H
#define SHELL_UTILS_H
#include "platform.h"
#include <stdio.h>
#ifdef WAPP_PLATFORM_WINDOWS
#define wapp_shell_utils_popen _popen
#define wapp_shell_utils_pclose _pclose
#else
#define wapp_shell_utils_popen popen
#define wapp_shell_utils_pclose pclose
#endif /* ifdef WAPP_PLATFORM_WINDOWS */
#endif // !SHELL_UTILS_H