⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 platform.h

📁 可信计算 TPM 很重要的应用底层接口封装中间层 IBM资深人员开发
💻 H
字号:
/* * * There are platform dependent and general defines. * *//* * * On Windows platforms the types are: * */#ifdef _WINDOWS_ // --- This should be used on Windows platformstypedef  unsigned char  BYTE;typedef  signed char    TSS_BOOL;  // Make specific to TSS to avoid potential conflictstypedef  unsigned short UINT16;typedef  unsigned long  UINT32;typedef  unsigned short UNICODE;typedef  void*          PVOID;#endif// On Linux platforms the types are:#ifdef __GNUC__typedef unsigned char  BYTE;typedef signed char    TSS_BOOL;  // Make specific to TSS to avoid potential conflictstypedef unsigned short UINT16;typedef unsigned int   UINT32;typedef unsigned short UNICODE;typedef void*          PVOID;#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -