Changeset 40661 in vbox for trunk/include
- Timestamp:
- Mar 27, 2012 12:43:28 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 77098
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/dbg.h
r36555 r40661 1147 1147 /** @} */ 1148 1148 1149 1150 /** @name Proposed Kernel Structure API 1151 * @{ */ 1152 /** Handle to the kernel structures database. */ 1153 typedef struct RTDBGKRNLSTRUCTSINT *RTDBGKRNLSTRUCTS; 1154 /** Pointer to a kernel structures database handle. */ 1155 typedef RTDBGKRNLSTRUCTS *PRTDBGKRNLSTRUCTS; 1156 1157 RTR0DECL(int) RTR0DbgKrnlStructsOpen(PRTDBGKRNLSTRUCTS phKrnlStructs, uint32_t fFlags); 1158 RTR0DECL(uint32_t) RTR0DbgKrnlStructsRetain(RTDBGKRNLSTRUCTS hKrnlStructs); 1159 RTR0DECL(uint32_t) RTR0DbgKrnlStructsRelease(RTDBGKRNLSTRUCTS hKrnlStructs); 1160 RTR0DECL(int) RTR0DbgKrnlStructsQueryMember(RTDBGKRNLSTRUCTS hKrnlStructs, const char *pszStructure, 1161 const char *pszMember, size_t *poffMember); 1149 1162 /** @} */ 1150 1163 1164 1165 /** @} */ 1166 1151 1167 RT_C_DECLS_END 1152 1168
Note:
See TracChangeset
for help on using the changeset viewer.