Advertisement
wandrake

Untitled

Mar 6th, 2012
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
F# 0.32 KB | None | 0 0
  1. module miadll =
  2.     [<DllImport("dll")>]
  3.     int function1(void)
  4.    
  5.     [<DllImport("dll")>]
  6.     int function2(void)
  7.    
  8.     [<DllImport("dll")>]
  9.     int function3(void)
  10.    
  11.     [<DllImport("dll")>]
  12.     int function4(void)
  13.    
  14. miadll.function1()
  15. miadll.function2()
  16. miadll.function3()
  17. miadll.function4()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement