暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Memory.h 238B

1234567891011121314
  1. #pragma once
  2. namespace il2cpp
  3. {
  4. namespace os
  5. {
  6. namespace Memory
  7. {
  8. void* AlignedAlloc(size_t size, size_t alignment);
  9. void* AlignedReAlloc(void* memory, size_t newSize, size_t alignment);
  10. void AlignedFree(void* memory);
  11. }
  12. }
  13. }