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

📄 vtbl.h

📁 MMI层OBJ不能完全编译
💻 H
字号:
/*****************************************************************************/
/* VTBL.H     v2.54                                                          */
/* Copyright (c) 1996-2004 Texas Instruments Incorporated                    */
/*****************************************************************************/

#include <rtti.h>

namespace std
{
   /***************************************************************************/
   /* VIRTUAL FUNCTION TABLE ENTRY                                            */
   /***************************************************************************/
   typedef struct vtbl_entry_first
   {
      short                  delta;   /* OFFSET TO GET TO THE COMPLETE OBJECT */
      struct type_info_impl *class_info; /* DYNAMIC TYPE OF OBJECT            */
   } VTBL_ENTRY_FIRST;

   typedef struct vtbl_entry_rest
   {
      short   delta;      /* OFFSET TO GET TO THE COMPLETE OBJECT   */
      void  (*func)();    /* VIRTUAL FUNCTION TO BE CALLED          */
   } VTBL_ENTRY_REST;

   typedef union vtbl_entry
   {
      VTBL_ENTRY_FIRST first;
      VTBL_ENTRY_REST rest;
   } VTBL_ENTRY;
}

⌨️ 快捷键说明

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