You've already forked 2ship2harkinian-Android
mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-03-10 11:20:47 -07:00
Co-authored-by: Louis <35883445+louist103@users.noreply.github.com> Co-authored-by: Nicholas Estelami <NEstelami@users.noreply.github.com> Co-authored-by: Random06457 <28494085+Random06457@users.noreply.github.com>
10 lines
201 B
C
10 lines
201 B
C
#ifndef ALIGN_ASSET_MACRO_H
|
|
#define ALIGN_ASSET_MACRO_H
|
|
|
|
#if defined(_WIN32)
|
|
#define ALIGN_ASSET(x) __declspec(align(x))
|
|
#else
|
|
#define ALIGN_ASSET(x) __attribute__((aligned (x)))
|
|
#endif
|
|
|
|
#endif |