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

📄 nmdef.h

📁 BREW SDK 3.1。BREW应用程序的开发包。
💻 H
字号:
#ifndef __NMDEF_H
#define __NMDEF_H

#ifndef  BITPOS_EFL_AC
#define  BITPOS_EFL_AC     18
#endif

#ifndef  BITMASK_EFL_AC
#define  BITMASK_EFL_AC    (1 << BITPOS_EFL_AC)
#endif

#if   defined(_M_IX86) && (_MSC_VER >= 1300)
//
// X86
//
#define  EFLAGS_AC_ON()       {                                         \
                              _asm pushfd                               \
                              _asm or dword ptr [esp], BITMASK_EFL_AC   \
                              _asm popfd                                \
                              }
                              
#define  EFLAGS_AC_OFF()      {                                         \
                              _asm pushfd                               \
                              _asm and dword ptr [esp], ~BITMASK_EFL_AC \
                              _asm popfd                                \
                              }
                              
#define  SAVE_EFL(s)          {                                            \
                                 _asm pushfd                               \
                                 _asm mov s, eax                           \
                                 _asm btr dword ptr [esp], BITPOS_EFL_AC   \
                                 _asm sbb s, eax                           \
                                 _asm and s, BITMASK_EFL_AC                \
                                 _asm popfd                                \
                              }
#define  RESTORE_EFL(s)       {                                            \
                                 _asm pushfd                               \
                                 _asm xchg eax, dword ptr [esp]            \
                                 _asm and  eax, ~BITMASK_EFL_AC            \
                                 _asm or   eax, s                          \
                                 _asm xchg eax, dword ptr [esp]            \
                                 _asm popfd                                \
                              }
#define  AC_BIT_ON(f)         {f |= BITMASK_EFL_AC;}
#define  AC_BIT_OFF(f)        {f &= ~BITMASK_EFL_AC;}
                              
#define  NO_MISALIGN_BEGIN    {unsigned _____efl_saved; SAVE_EFL(_____efl_saved)
#define  NO_MISALIGN_END      RESTORE_EFL(_____efl_saved)}

#define  DWORD_ALIGN          __declspec(align(4))
#define  QWORD_ALIGN          __declspec(align(8))

#ifndef  DO_STACKCHECK
#pragma runtime_checks( "", off )
#endif

#else
//
// Non-X86
//
#define  EFLAGS_AC_ON()          {}
#define  EFLAGS_AC_OFF()         {}
#define  SAVE_EFL(s)             {}
#define  RESTORE_EFL(s)          {}
#define  NO_MISALIGN_BEGIN       {}
#define  NO_MISALIGN_END         {}
#define  DWORD_ALIGN
#define  QWORD_ALIGN

#endif   // #if defined(_M_IX86) && (_MSC_VER >= 1300) 
                                 
#define  NM_SWITCH_BEGIN(i)      NO_MISALIGN_BEGIN; switch(i)
#define  NM_SWITCH_END           NO_MISALIGN_END
#define  NM_CASE(c)              case (c): RESTORE_EFL(_____efl_saved)
#define  NM_CASE_FALL_THROUGH(c) case (c):
#define  NM_DEFAULT              default: RESTORE_EFL(_____efl_saved)

#endif // __NMDEF_H

⌨️ 快捷键说明

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