Advertisement
hejmus

short dll exporting

Nov 12th, 2010
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .386
  2. .model flat
  3.  
  4. public _DllMain@12
  5. public v
  6. public f
  7.  
  8. .data
  9.     v dd 42
  10.  
  11. .code
  12.  
  13. _DllMain@12:
  14.     push 1
  15.     pop eax
  16.     ret 12
  17.  
  18. f:
  19.     push 42h
  20.     pop eax
  21.     ret
  22.    
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement