diff options
author | Camil Staps | 2019-11-23 15:00:16 +0100 |
---|---|---|
committer | Camil Staps | 2019-11-23 15:00:16 +0100 |
commit | 037eddfe7830723598c0c1b7d4a223f2279b6fd2 (patch) | |
tree | 351ad2581e8b02088f68b04100ccdea610e4031d /src/Gtk/Widgets/Sheet/Internal.icl | |
parent | Add PixelsAboveLines, PixelsBelowLines, and PixelsInsideWrap to control line ... (diff) |
Windows compatibilitywindows-compatibility
Diffstat (limited to 'src/Gtk/Widgets/Sheet/Internal.icl')
-rw-r--r-- | src/Gtk/Widgets/Sheet/Internal.icl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Gtk/Widgets/Sheet/Internal.icl b/src/Gtk/Widgets/Sheet/Internal.icl index d465984..a341066 100644 --- a/src/Gtk/Widgets/Sheet/Internal.icl +++ b/src/Gtk/Widgets/Sheet/Internal.icl @@ -5,8 +5,12 @@ import StdMaybe import System._Pointer +// *Nix: import code from library "-lgtksheet-4.0" +// Windows: +import code from library "gtksheet_library" + gtk_sheet_new :: !Int !Int !String !.a -> (!Pointer, !.a) gtk_sheet_new rows cols title env = new rows cols (packString title) env where |