dragonbane

Function Types for IDA

Nov 25th, 2016
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. Need double underscore to init (__)
  2.  
  3. C = Const (is referring to the variable before it e.g. cC = const Char == Char const)
  4. F = Function (what follows after are input params)
  5. G = Return type (what follows after is return type)
  6. P = Pointer
  7. R = &
  8. S = Signed
  9. U = Unsigned
  10. V = Volatile
  11.  
  12. c = char
  13. f = float
  14. i = int
  15. l = long
  16. s = short
  17. v = void
  18.  
  19.  
  20. Lesser used types:
  21.  
  22. b = bool
  23. d = double
  24. w = wchar_t
  25. x = long long
  26.  
  27.  
  28. Custom Types:
  29.  
  30. va_list_struct = void test(const char *format, ...)
Add Comment
Please, Sign In to add comment