comparison fuhtark_test/include/ddk/polarity.h @ 1500:91c8c3b7cbf0

add: futhark tests for generating vulkan api
author sam <sam@basx.dev>
date Wed, 26 Nov 2025 21:36:48 +0700
parents
children
comparison
equal deleted inserted replaced
1499:1f58458b7ef7 1500:91c8c3b7cbf0
1 /* $Id$
2 *
3 * COPYRIGHT: This file is in the public domain.
4 * PROJECT: ReactOS kernel
5 * FILE:
6 * PURPOSE:
7 * PROGRAMMER: Magnus Olsen (greatlrd)
8 *
9 */
10
11 #ifndef POLARITY_HEADERFILE_IS_INCLUDED
12 #define POLARITY_HEADERFILE_IS_INCLUDED
13
14 #ifdef USE_POLARITY
15 #ifdef BUILDING_DLL
16 #define POLARITY __declspec( dllexport )
17 #else
18 #define POLARITY __declspec( dllimport )
19 #endif
20 #else
21 #define POLARITY
22 #endif
23 #endif