Advertisement
FlyFar

dropper_StdAfx.h

Feb 19th, 2023
437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.48 KB | Cybersecurity | 0 0
  1. #include <windows.h>
  2.  
  3. #define _QWORD UINT64
  4. #define _DWORD UINT32
  5. #define _WORD  USHORT
  6. #define _BYTE  UCHAR
  7. #define bool   BOOL
  8.  
  9. #define __usercall _cdecl
  10. #define __thiscall _cdecl // (?)
  11.  
  12. #define NTSTATUS                     ULONG
  13. #define STATUS_SUCCESS               0x00000000
  14. #define STATUS_INFO_LENGTH_MISMATCH  0xC0000004
  15. #define STATUS_ACCESS_DENIED         0xC0000022
  16. #define STATUS_BUFFER_OVERFLOW       0x80000005
  17. #define STATUS_CONFLICTING_ADDRESSES 0xC0000018
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement