Skip to content

Commit 77d3aef

Browse files
committed
Update version function.
1 parent 9931ee1 commit 77d3aef

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

start_up.go

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build windows
12
// +build windows
23

34
// Copyright (c) 2001-2024 Aspose Pty Ltd. All Rights Reserved.
@@ -12,7 +13,9 @@ import "C"
1213
import (
1314
"unsafe"
1415
)
16+
1517
var GlobalVar bool = false
18+
1619
func init() {
1720
if GlobalVar == false {
1821
GlobalVar = true
@@ -21,8 +24,9 @@ func init() {
2124
}
2225

2326
func Version() {
24-
println("---Version: v24.12.0---")
25-
}
27+
println("---Version: v24.12.1---")
28+
}
29+
2630
type UUID struct {
2731
ptr unsafe.Pointer
2832
}
@@ -32,11 +36,11 @@ type Stream struct {
3236
}
3337

3438
type Vector struct {
35-
ptr unsafe.Pointer
39+
ptr unsafe.Pointer
3640
data_type string
3741
}
3842

3943
type Enumerator struct {
40-
ptr unsafe.Pointer
44+
ptr unsafe.Pointer
4145
data_type string
4246
}

start_up_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func init() {
2121
}
2222

2323
func Version() {
24-
println("---Version: v24.12.0---")
24+
println("---Version: v24.12.1---")
2525
}
2626
type UUID struct {
2727
ptr unsafe.Pointer

0 commit comments

Comments
 (0)