diff options
| author | andromeda <andromeda@lenovo> | 2026-08-17 20:06:22 +0200 |
|---|---|---|
| committer | andromeda <andromeda@lenovo> | 2026-08-17 20:06:22 +0200 |
| commit | 55dede2c2b044cbf814ee815848e3d5759c93c77 (patch) | |
| tree | ca7684514986bbc78455f570f328570d5bf47fce /RGFW.hs | |
| parent | a49e506fcd5a037dd29831e5dbcd0c574060c4b5 (diff) | |
RGFW
Diffstat (limited to 'RGFW.hs')
| -rw-r--r-- | RGFW.hs | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -0,0 +1,31 @@ +{-# LANGUAGE CApiFFI #-} +{-# LANGUAGE DataKinds #-} +{-# LANGUAGE DeriveGeneric #-} +{-# LANGUAGE DerivingStrategies #-} +{-# LANGUAGE DerivingVia #-} +{-# LANGUAGE EmptyDataDecls #-} +{-# LANGUAGE ExplicitForAll #-} +{-# LANGUAGE FlexibleContexts #-} +{-# LANGUAGE FlexibleInstances #-} +{-# LANGUAGE GeneralizedNewtypeDeriving #-} +{-# LANGUAGE MagicHash #-} +{-# LANGUAGE MultiParamTypeClasses #-} +{-# LANGUAGE PatternSynonyms #-} +{-# LANGUAGE StandaloneDeriving #-} +{-# LANGUAGE TemplateHaskell #-} +{-# LANGUAGE TypeApplications #-} +{-# LANGUAGE TypeFamilies #-} +{-# LANGUAGE TypeOperators #-} +{-# LANGUAGE UnboxedTuples #-} +{-# LANGUAGE UndecidableInstances #-} + +module RGFW where + +import HsBindgen.Runtime.LibC +import HsBindgen.TH + +let + conf = def{clang = def{extraIncludeDirs = [Dir "include"]}} + confTH = def{verbosity = Verbosity Warning} + in + withHsBindgen conf confTH $ hashInclude "RGFW.h"
\ No newline at end of file |
