This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
@Author: xi4oyu | |
@Github: https://github.com/featherL | |
@File: gofunc_fix.py | |
适用于 IDA Pro 9.1, 修复 golang 函数定义中返回值放在函数参数位置的问题 | |
""" | |
import idautils | |
import ida_funcs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typedef UCHAR CLFS_CLIENT_ID<format=hex>; | |
typedef QWORD CLFS_LSN<format=hex>; | |
typedef QWORD ULONGLONG<format=hex>; | |
typedef QWORD PUCHAR<format=hex>; | |
typedef struct _CLFS_LOG_BLOCK_HEADER | |
{ | |
UCHAR MajorVersion<format=hex>; | |
UCHAR MinorVersion<format=hex>; | |
UCHAR Usn; |