Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. '''
  2. This is the primary class for calling Signature-based functions. Requirements for this class are:
  3. * Identifier (identifier):
  4. - The actual "Windows Signature" or "Linux Symbol".
  5. - "Windows Signatures" must be previously formatted with "backslash x" instead of spaces.
  6. * Parameter Format (param_format):
  7. - The type of each argument, and the return type:
  8. p = Pointer
  9. i = Integer
  10. f = Float
  11. B = Boolean
  12. d = Double
  13. L = Long
  14. S = String
  15. * Convention (convention):
  16. - thiscall
  17. Used when calling funtions from (within a C++ class)
  18. - cdecl
  19. Used when calling functions that are global (not part of a C++ class)
  20. - fastcall
  21. (Reserved)
  22. '''
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement