sdl3-bindgen-sys-0.0.0.1: runtime-cexpr/C/Expr/Win64.hs
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE UndecidableInstances #-}
-- Some options to make this module faster to compile
{-# OPTIONS_GHC -O0 -fmax-pmcheck-models=1 #-}
{-# OPTIONS_GHC -Wno-orphans -Wno-unused-matches #-}
module C.Expr.Win64 (
module C.Operator.Classes,
module C.Expr.Win64,
) where
import C.Operator.Classes
import C.Operator.GenInstances (cExprInstances)
import C.Type (OS (..), Platform (..), WordWidth (..))
--------------------------------------------------------------------------------
$( cExprInstances
( Platform
{ platformWordWidth = WordWidth64
, platformOS = Windows
}
)
)