mirror of
https://github.com/Airr/nim-cocoa.git
synced 2025-05-10 02:32:08 +00:00
9 lines
224 B
Nim
9 lines
224 B
Nim
{.compile: "widgets/window.m".}
|
|
{.compile: "widgets/saneview.m".}
|
|
|
|
import NSFunctions
|
|
|
|
{.passL: "-fobjc-arc -framework Cocoa"}
|
|
|
|
proc newWindow*(title: cstring, width, height: int, style: int): ID {.importc: "createWindow".}
|