removed windows sdk

This commit is contained in:
Andrew Zambazos
2026-06-11 14:02:39 +12:00
parent c0395a49bd
commit ffdc88608e
2155 changed files with 0 additions and 451005 deletions
-48
View File
@@ -1,48 +0,0 @@
/**************************************************************************************************
* This file is a part of Ultralight. *
* *
* See <https://ultralig.ht> for licensing and more. *
* *
* (C) 2024 Ultralight, Inc. *
**************************************************************************************************/
#ifndef __ULTRALIGHT_EXPORTS_H__
#define __ULTRALIGHT_EXPORTS_H__
#if defined(__WIN32__) || defined(_WIN32)
# if defined(ULTRALIGHT_STATIC_BUILD)
# define UExport
# else
# if defined(ULTRALIGHT_IMPLEMENTATION)
# define UExport __declspec(dllexport)
# else
# define UExport __declspec(dllimport)
# endif
# endif
#else
# if defined(ULTRALIGHT_STATIC_BUILD)
# define UExport
# else
# define UExport __attribute__((visibility("default")))
# endif
#endif
// UCExport is for symbols that are exported strictly by UltralightCore
#if defined(__WIN32__) || defined(_WIN32)
# if defined(ULTRALIGHT_STATIC_BUILD)
# define UCExport
# else
# if defined(ULTRALIGHT_IMPLEMENTATION) && defined(ULTRALIGHT_MODULE_ULTRALIGHTCORE)
# define UCExport __declspec(dllexport)
# else
# define UCExport __declspec(dllimport)
# endif
# endif
#else
# if defined(ULTRALIGHT_STATIC_BUILD)
# define UCExport
# else
# define UCExport __attribute__((visibility("default")))
# endif
#endif
#endif // __ULTRALIGHT_EXPORTS_H__