/*
 * Copyright Axel Davy <davyaxel0@gmail.com>
 * SPDX-License-Identifier: MIT
 */

#ifndef _NINE_FLAGS_H_
#define _NINE_FLAGS_H_

#include "util/compiler.h"

/* Incoming 32 bits calls are 4-byte aligned.
 * We need to realign them to be able to use
 * SSE and to work with other libraries (llvm, etc)
 */
#define NINE_WINAPI WINAPI UTIL_ALIGN_STACK

#endif /* _NINE_FLAGS_H_ */
