diff options
author | xland <412588801@qq.com> | 2015-08-30 08:30:22 +0800 |
---|---|---|
committer | xland <412588801@qq.com> | 2015-08-30 08:30:22 +0800 |
commit | 755d86ff3db795dc16221186b4c206ae1f5374aa (patch) | |
tree | f2765aebd26db0453756c5ee746278d9f58e4a06 /lib | |
parent | c718e0eb2d57a68f6f3792dd28b5435a7b061345 (diff) | |
download | Nim-755d86ff3db795dc16221186b4c206ae1f5374aa.tar.gz |
Add link button for IUP wrapper
Add link button for IUP wrapper
Diffstat (limited to 'lib')
-rw-r--r-- | lib/wrappers/iup.nim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/wrappers/iup.nim b/lib/wrappers/iup.nim index cbd9b5ae9..d910173ca 100644 --- a/lib/wrappers/iup.nim +++ b/lib/wrappers/iup.nim @@ -307,6 +307,8 @@ proc menuv*(children: ptr PIhandle): PIhandle {. proc button*(title, action: cstring): PIhandle {. importc: "IupButton", cdecl, dynlib: dllname.} +proc link*(url, title: cstring): PIhandle {. + importc: "IupLink", cdecl, dynlib: dllname.} proc canvas*(action: cstring): PIhandle {. importc: "IupCanvas", cdecl, dynlib: dllname.} proc dialog*(child: PIhandle): PIhandle {. |