From efb7ae5fdfb8e20f8a130c0549bebcba3f2d70c1 Mon Sep 17 00:00:00 2001 From: keynmol Date: Sun, 5 Jan 2025 23:13:59 +0000 Subject: [PATCH] deploy: 6068826558cd150ec3f3fc4a99ae1dbc5e2ec81b --- configuration/index.html | 2 +- exports/index.html | 10 +++---- quickstart/index.html | 6 ++--- semantics/index.html | 56 ++++++++++++++++++++-------------------- 4 files changed, 37 insertions(+), 37 deletions(-) diff --git a/configuration/index.html b/configuration/index.html index 126dc56..78913af 100644 --- a/configuration/index.html +++ b/configuration/index.html @@ -25,7 +25,7 @@

CLI

Usage: bindgen --package <string> --header <string> [--scala] [--c] [--link-name <string>] [--c-import <string>]... [--clang-include <string>]... [--clang <string>]... [--quiet] [--trace | --info | --warning | --error] [--llvm-bin <string> | --clang-path <string> | --no-system] [--render.no-constructor <string>] [--render.opaque-structs <string>] [--render.no-comments] [--render.no-location] [--render.external-path <string>]... [--render.external-name <string>]... [--out <string>] [--multi-file] [--export] [--exclude-system-path <string>]... [--flavour <string>]
 
 Generate Scala 3 native bindings from C header files
-Version: 0.2.0+1-60688265-SNAPSHOT
+Version: 0.2.1
 Built using Scala 3.3.4 and Scala Native 0.5.6
 
 Options and flags:
diff --git a/exports/index.html b/exports/index.html
index a9c479c..5bb2666 100644
--- a/exports/index.html
+++ b/exports/index.html
@@ -50,14 +50,14 @@
 
 trait ExportedFunctions:
   /**
-   * [bindgen] header: /tmp/5865429950857435181header.h
+   * [bindgen] header: /tmp/3631520317757164776header.h
   */
   def myThing(n : CInt, i : CLongInt): CLongInt
 
 
 object functions extends ExportedFunctions:
   /**
-   * [bindgen] header: /tmp/5865429950857435181header.h
+   * [bindgen] header: /tmp/3631520317757164776header.h
   */
   @exported
   override def myThing(n : CInt, i : CLongInt): CLongInt = libtest.impl.Implementations.myThing(n, i)
@@ -104,7 +104,7 @@
 object structs:
   import _root_.libtest.structs.*
   /**
-   * [bindgen] header: /tmp/7357099565120624732header.h
+   * [bindgen] header: /tmp/4269820861804698086header.h
   */
   opaque type MyStuff = CStruct2[CInt, CString]
   object MyStuff:
@@ -124,7 +124,7 @@
 trait ExportedFunctions:
   import _root_.libtest.structs.*
   /**
-   * [bindgen] header: /tmp/7357099565120624732header.h
+   * [bindgen] header: /tmp/4269820861804698086header.h
   */
   def myThing(n : CInt, str : Ptr[MyStuff]): CLongInt
 
@@ -132,7 +132,7 @@
 object functions extends ExportedFunctions:
   import _root_.libtest.structs.*
   /**
-   * [bindgen] header: /tmp/7357099565120624732header.h
+   * [bindgen] header: /tmp/4269820861804698086header.h
   */
   @exported
   override def myThing(n : CInt, str : Ptr[MyStuff]): CLongInt = libtest.impl.Implementations.myThing(n, str)
diff --git a/quickstart/index.html b/quickstart/index.html
index 9535b43..0596501 100644
--- a/quickstart/index.html
+++ b/quickstart/index.html
@@ -93,7 +93,7 @@ 

SBT plugin (stable)<

SBT plugin (latest)

project/plugins.sbt

resolvers += Resolver.sonatypeRepo("snapshots")
-addSbtPlugin("com.indoorvivants" % "bindgen-sbt-plugin" % "0.2.0+1-60688265-SNAPSHOT")
+addSbtPlugin("com.indoorvivants" % "bindgen-sbt-plugin" % "0.2.1")
 

Usage

This covers usage as part of an SBT project

@@ -157,7 +157,7 @@

Usage

object enumerations: import predef.* /** - * [bindgen] header: /tmp/13746214975132965780header.h + * [bindgen] header: /tmp/12059462727463625422header.h */ opaque type bla = CUnsignedInt object bla extends _BindgenEnumCUnsignedInt[bla]: @@ -181,7 +181,7 @@

Usage

import _root_.libtest.enumerations.* import _root_.libtest.predef.* /** - * [bindgen] header: /tmp/13746214975132965780header.h + * [bindgen] header: /tmp/12059462727463625422header.h */ def sum(one : bla, two : bla): Unit = extern diff --git a/semantics/index.html b/semantics/index.html index 955954f..dddb86a 100644 --- a/semantics/index.html +++ b/semantics/index.html @@ -30,7 +30,7 @@ object structs: import _root_.libtest.structs.* /** - * [bindgen] header: /tmp/13647583143810940069header.h + * [bindgen] header: /tmp/1440870693820446163header.h */ opaque type Big = CStruct3[CInt, CString, Small] object Big: @@ -51,7 +51,7 @@ def sm_=(value: Small): Unit = !struct.at3 = value /** - * [bindgen] header: /tmp/13647583143810940069header.h + * [bindgen] header: /tmp/1440870693820446163header.h */ opaque type Small = CStruct1[CLongLong] object Small: @@ -111,7 +111,7 @@