Login Page - Create Account

Support Board


Date/Time: Fri, 31 Jan 2025 03:14:55 +0000



Post From: tell SC not to load a DLL in Data/?

[2019-04-02 17:53:15]
uM8137 - Posts: 183
I've uploaded the "bigcode.dll", which here is really called small.dll for your testing.

"dumpbin.exe /exports small.dll | grep scsf_" does not show any exports beginning with "scsf_".

It is really a hello world program, as generated by Google's Go, v1.10.8. Source:

// built with command: go build -o small.dll -buildmode=c-shared
// using go1.10.8 on windows 2016.
package main

import (
"fmt"
"os"
)

import "C"

func main() {}

//export HelloWorld
func HelloWorld() {
f, _ := os.Create("golang_rocks_was_here")
f.Write([]byte("hello from scsf_GolangRocks\n"))
f.Close()
fmt.Println("HelloWorld called!")
}

update: but I notice I do have a string in there with scsf_ !
Date Time Of Last Edit: 2019-04-02 17:54:42
Attachment Deleted.