Guest User

Untitled

a guest
May 22nd, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.66 KB | None | 0 0
  1. /***
  2. *intrin.h = declarations/definitions for some platform specific intrinsic stuff.
  3. *
  4. *       Copyright (c) Microsoft Corporation. All rights reserved.
  5. *Purpose:
  6. *   This include file contains the declerations for platform specific intrinsic
  7. *   functions, or will include other files that have decleration of intrinsic
  8. *   functions. Also there will be some platform specific macros to be used with
  9. *   intrinsic functions.
  10. *
  11. ****/
  12.  
  13. #pragma once
  14. #define __INTRIN_H_
  15. #ifndef RC_INVOKED
  16. #ifndef __midl
  17.  
  18. #include <crtdefs.h>
  19. #include <setjmp.h>
  20. #include <stddef.h>
  21.  
  22. #if !defined(_M_CEE_PURE)
  23.  
  24. #if defined(_M_IX86) || defined(_M_X64)
  25. #include <immintrin.h>
  26. #include <ammintrin.h>
Add Comment
Please, Sign In to add comment