//export _RVExtension@12
func _RVExtension@12(output *C.char, outputsize C.size_t, input *C.char) {Saisissez le code ici...
RVExtension and it works perfectly well.
_RVExtension@12 and go returns
#ifdef __cplusplus
extern "C" {
#endif
extern void _RVExtensionVersion(char* p0, size_t p1);
extern void _RVExtensionArgs(char* p0, size_t p1, char* p2, char** p3, int p4);
extern void _RVExtension(char* p0, size_t p1, char* p2);
#ifdef __cplusplus
}
#endif
I need some assistance to export a GO dll function to a C program.The C program (wich i m not the author) required to call a function with this name: _RVExtension@12
[DllExport("_RVExtension@12", CallingConvention = CallingConvention.Winapi)]
--
You received this message because you are subscribed to a topic in the Google Groups "golang-nuts" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/golang-nuts/RnGw1sx3vug/unsubscribe.
To unsubscribe from this group and all its topics, send an email to golang-nuts...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/CABx2%3DD_r60QHj_QR9RQj6Kev-YyoMNyQQKCDSWhQ5JHW29eC5A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
RVExtension
RVExtensionArgs
RVExtensionVersion
_RVExtension@12
_RVExtensionArgs@20
_RVExtensionVersion@8
> To unsubscribe from this group and stop receiving emails from it, send an email to golan...@googlegroups.com.
/* Code generated by cmd/cgo; DO NOT EDIT. */
/* package _/F_/Git/returnHWID-Arma */
#line 1 "cgo-builtin-export-prolog"
#include <stddef.h> /* for ptrdiff_t below */
#ifndef GO_CGO_EXPORT_PROLOGUE_H#define GO_CGO_EXPORT_PROLOGUE_H
#ifndef GO_CGO_GOSTRING_TYPEDEFtypedef struct { const char *p; ptrdiff_t n; } _GoString_;#endif
#endif
/* Start of preamble from import "C" comments. */
#line 3 "main.go"
#include <stdlib.h>#include <stdio.h>#include <string.h>
#line 1 "cgo-generated-wrapper"
/* End of preamble from import "C" comments. */
/* Start of boilerplate cgo prologue. */#line 1 "cgo-gcc-export-header-prolog"
#ifndef GO_CGO_PROLOGUE_H#define GO_CGO_PROLOGUE_H
typedef signed char GoInt8;typedef unsigned char GoUint8;typedef short GoInt16;typedef unsigned short GoUint16;typedef int GoInt32;typedef unsigned int GoUint32;typedef long long GoInt64;typedef unsigned long long GoUint64;typedef GoInt64 GoInt;typedef GoUint64 GoUint;typedef __SIZE_TYPE__ GoUintptr;typedef float GoFloat32;typedef double GoFloat64;typedef float _Complex GoComplex64;typedef double _Complex GoComplex128;
/* static assertion to make sure the file is being used on architecture at least with matching size of GoInt.*/typedef char _check_for_64_bit_pointer_matching_GoInt[sizeof(void*)==64/8 ? 1:-1];
#ifndef GO_CGO_GOSTRING_TYPEDEFtypedef _GoString_ GoString;#endiftypedef void *GoMap;typedef void *GoChan;typedef struct { void *t; void *v; } GoInterface;typedef struct { void *data; GoInt len; GoInt cap; } GoSlice;
#endif
/* End of boilerplate cgo prologue. */
#ifdef __cplusplusextern "C" {#endif
extern void RVExtensionVersion(char* p0, size_t p1);
extern void RVExtension(char* p0, size_t p1, char* p2);
#ifdef __cplusplus}#endif
> > To unsubscribe from this group and stop receiving emails from it, send an email to golan...@googlegroups.com.
> > To unsubscribe from this group and stop receiving emails from it, send an email to golan...@googlegroups.com.
extern void __fastcall RVExtension(char *output, int outputSize, const char *function){
goRVExtension(output, outputSize, function);
};
// export goRVExtension
func goRVExtension(output *C.char, outputsize C.size_t, input *C.char) {
temp := fmt.Sprintf("Hello %s!", C.GoString(input))
// Return a result to Arma
result := C.CString(temp)
defer C.free(unsafe.Pointer(result))
var size = C.strlen(result) + 1
if size > outputsize {
size = outputsize
}
C.memmove(unsafe.Pointer(output), unsafe.Pointer(result), size)
}
go : # command-line-arguments
Au caractère Ligne:1 : 1
+ go build -o armago.dll -buildmode=c-shared armago.go 2> result.txt
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (# command-line-arguments:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
C:\Users\code34\AppData\Local\Temp\go-build126339458\b001\_x002.o: In function `@RVExtension@12':
C:/Users/code34/go/src/github.com/code34/armago_x64/armago.go:8: multiple definition of `@RVExtension@12'
C:\Users\code34\AppData\Local\Temp\go-build126339458\b001\_x001.o:/tmp/go-build/armago.go:8: first defined here
C:\Users\code34\AppData\Local\Temp\go-build126339458\b001\_x001.o: In function `@RVExtension@12':
/tmp/go-build/armago.go:9: undefined reference to `goRVExtension'
C:\Users\code34\AppData\Local\Temp\go-build126339458\b001\_x002.o: In function `@RVExtension@12':
C:/Users/code34/go/src/github.com/code34/armago_x64/armago.go:9: undefined reference to `goRVExtension'
collect2.exe: error: ld returned 1 exit status
# command-line-arguments
In file included from _cgo_export.c:4:0:
armago.go: In function 'RVExtension':
armago.go:9:2: warning: implicit declaration of function 'goRVExtension' [-Wimplicit-function-declaration]
# command-line-arguments
.\armago.go: In function 'RVExtension':
.\armago.go:9:2: warning: implicit declaration of function 'goRVExtension' [-Wimplicit-function-declaration]
goRVExtension(output, outputSize, function);
^
@RVExtension@12
(but without underscore) , but i don't succeed to resolv the bug :(/*
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
extern void __stdcall RVExtension(char *output, int outputSize, const char *function);
*/
//export RVExtensionVersion
func RVExtensionVersion(output *C.char, outputsize C.size_t) {
result := C.CString("Version 1.0")
defer C.free(unsafe.Pointer(result))
var size = C.strlen(result) + 1
if size > outputsize {
size = outputsize
}
C.memmove(unsafe.Pointer(output), unsafe.Pointer(result), size)
}
Hello,
I need some assistance to export a GO dll function to a C program.The C program (wich i m not the author) required to call a function with this name: _RVExtension@12
so, i simply declare my go function like this:
//export _RVExtension@12
func _RVExtension@12(output *C.char, outputsize C.size_t, input *C.char) {Saisissez le code ici...
but when i try to compile it, it returns an illegal character U+0040 '@' error.Do you know if there is a workaround about this ? I m not familiar with C code and i don't understand why there is @12 in the function name.note: for the 64 bits the entry point is simple :RVExtension and it works perfectly well.