; 链表操作 将当前APC从用户队列中拆除
eax表示该某个双向链表的节点
struct node{
    struct node * next
    struct node * last
}
mov     ecx, [eax]      [eax] Node->next
mov     eax, [eax+4]    [eax+4] Node->last
mov     [eax], ecx      Node->last->next = node->next
mov     [ecx+4], eax    Node->next->last = node->last

相关文章:

  • 2021-07-25
  • 2021-10-17
  • 2021-09-25
  • 2022-12-23
  • 2022-12-23
  • 2021-08-06
猜你喜欢
  • 2021-09-12
  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案