5

如何将alignof运算符翻译为 Delphi?我需要它来翻译

#define INET_IS_ALIGNED(Pointer, Type) \
   (((ULONG_PTR)Pointer & (__builtin_alignof(Type)-1)) == 0)
4

1 回答 1

3

如何将 alignof 运算符翻译为 Delphi?

你不能。没有等价物。

于 2015-05-26T09:07:36.550 回答