Valhalla Legends Archive

Programming => General Programming => C/C++ Programming => Topic started by: FrostWraith on October 18, 2006, 03:55 PM

Title: Exporting C Functions in a DLL
Post by: FrostWraith on October 18, 2006, 03:55 PM
OK, I am stumped!

Here is what I have gotten to work

test.c
int _stdcall SendNumber() {
    return 1;
}


test.def
EXPORTS
SendNumber


Then as soon as a add a parameter for the SendNumber function like so:
int _stdcall SendNumber(int inputnum) {
    return inputnum;
}


It definantly does not return the correct number.
I am using GCC command line compiler.
Title: Re: Exporting C Functions in a DLL
Post by: Kp on October 18, 2006, 08:58 PM
How do you know it is returning the wrong number?  How are you calling it?  Are you trusting the linker to fix up the reference or are you locating it dynamically via GetProcAddress?
Title: Re: Exporting C Functions in a DLL
Post by: FrostWraith on October 18, 2006, 09:10 PM
You lost me there. I am calling it via VB (unfortunatly my most fluent language). It is returning strange numbers that change each time it is recompiled. And I guess I must be trusting the linker, whatever that is.
Title: Re: Exporting C Functions in a DLL
Post by: UserLoser on October 18, 2006, 09:30 PM
What does your declaration function look like for this?
Title: Re: Exporting C Functions in a DLL
Post by: FrostWraith on October 18, 2006, 09:36 PM
Private Declare Function SendNumber Lib "E:\test.dll" (inputnum As Integer) As Integer
Title: Re: Exporting C Functions in a DLL
Post by: UserLoser on October 18, 2006, 10:22 PM
Not sure if this'll change anything, but try:


Private Declare Function SendNumbe Lib "E:\Test.dll" (ByVal InputNum As Long) As Long
Title: Re: Exporting C Functions in a DLL
Post by: FrostWraith on October 18, 2006, 11:36 PM
Strange enough, it did. Wtf? Works good for now. Here's the next problem: Strings.

Note: All that was needed was ByVal.

Also, when I compile I get this (I changed the function btw):
QuoteWarning: resolving _get_verbyte by linking to _get_verbyte@4
Use --enable-stdcall-fixup to disable these warnings
Use --disable-stdcall-fixup to disable these fixups

It compiled and worked all nicely but, I didn't like seeing errors. So i went into the def file and predefines the linking to @4 like so:
EXPORTS
    get_verbyte@4


Now it cant find dll entry point.
Title: Re: Exporting C Functions in a DLL
Post by: UserLoser on October 19, 2006, 11:26 AM
Quote from: FrostWraith on October 18, 2006, 11:36 PM
Strange enough, it did. Wtf? Works good for now. Here's the next problem: Strings.

Note: All that was needed was ByVal.

Also, when I compile I get this (I changed the function btw):
QuoteWarning: resolving _get_verbyte by linking to _get_verbyte@4
Use --enable-stdcall-fixup to disable these warnings
Use --disable-stdcall-fixup to disable these fixups

It compiled and worked all nicely but, I didn't like seeing errors. So i went into the def file and predefines the linking to @4 like so:
EXPORTS
    get_verbyte@4


Now it cant find dll entry point.

Public Declare Function GetVersionByte Alias "#4" Lib "Whatever.dll (...) As ...
Title: Re: Exporting C Functions in a DLL
Post by: FrostWraith on October 19, 2006, 04:09 PM
If I add that, it doesn't work. Does anyone here know how to properly declare an exported fuction in a .def file. I just don't like seeing warnings.
Title: Re: Exporting C Functions in a DLL
Post by: MyndFyre on October 19, 2006, 06:57 PM
Decorate your exported function signature as


extern "C"
Title: Re: Exporting C Functions in a DLL
Post by: l)ragon on October 19, 2006, 09:27 PM
Quote from: FrostWraith on October 19, 2006, 04:09 PM
If I add that, it doesn't work. Does anyone here know how to properly declare an exported fuction in a .def file. I just don't like seeing warnings.
eg:
LIBRARY GUI

EXPORTS
CreateREB
DestroyREB
AppendTextEX
TimeStamper
InsertItem
RemoveItem
GetListViewItemText
GetListViewSelectedItem
GetItemIndex
ModifyItem
ClearListView
SetEditBoxText
GetEditBoxText
AppendEditBoxText
GetIconCode
GetPingCode
MakeTransparent
AddChat
ClearRichEdit
InitImageList
SetRgbBG
CreateLV

__stdcall
Title: Re: Exporting C Functions in a DLL
Post by: FrostWraith on October 20, 2006, 10:09 PM
OK. I cannot figure out how to pass strings through my C function and return the exact same string. Is "char*" the same data type as "As String" in VB? If it is, do i need to use ByRef to retrieve it in VB? Help me.
Title: Re: Exporting C Functions in a DLL
Post by: FrostWraith on October 20, 2006, 11:14 PM
So how would I go about sending the parameter with the same data type that is char*?

O have tried:
unsigned char * _stdcall get_version ()
{
    return "1.0.0";
}
Title: Re: Exporting C Functions in a DLL
Post by: UserLoser on October 20, 2006, 11:34 PM
Public Declare Function get_version lib "whatever.dll" () As Long

Lookup lstrcpy and lstrlen for this operation
Title: Re: Exporting C Functions in a DLL
Post by: FrostWraith on October 21, 2006, 12:11 AM
Thank You!

Here was the solution for anyone who ever happens to need help.
char* __stdcall get_version ()
{
    char* s1;
    const char* s2 = "1.0.0";
    char* ptr;

    ptr = strcpy( s1, s2 );
    return ptr;
}


WOW! New strange problem, if I call this function 2 times i crash! Wtf? Should I set everything to null at the end of the function?
Title: Re: Exporting C Functions in a DLL
Post by: MyndFyre on October 21, 2006, 03:53 AM
Quote from: FrostWraith on October 21, 2006, 12:11 AM
WOW! New strange problem, if I call this function 2 times i crash! Wtf? Should I set everything to null at the end of the function?
It's not really that strange!  Take a look at your code!  You're declaring s1, but you're never allocating memory.  You're overwriting arbitrary memory.  Very, very scary!  You should definitely allocate memory that you're going to memcpy or strcpy to!
Title: Re: Exporting C Functions in a DLL
Post by: K on October 21, 2006, 03:02 PM
That is wrong on so many levels.  I would try something like this:


int __stdcall get_version (char* out)
{
    const char* version = "1.0.0";
    strcpy( out, version);
    return strlen(version);
}



Public Declare Function [Whatever] (ByVal out As String) As Long

Dim buffer As String
Dim len as Long

buffer = Space(255);
len = Whatever(buffer);
buffer = Left(buffer, len);
Title: Re: Exporting C Functions in a DLL
Post by: FrostWraith on October 22, 2006, 10:57 PM
I'm starting to understand this space thing. So basically what you want to do before you call the get_version function is free up some space that can be over written by the function?  If so, should this standard be used when calling, say, a local VB function?

Also: If the length of the string is static, should I just lower the space to (in this case) 5?
Title: Re: Exporting C Functions in a DLL
Post by: Kp on October 23, 2006, 06:49 PM
Five is not sufficient.  You're forgetting the terminating null character.

You don't need to preallocate space for calls between functions in VB (as far as I know), but generally you will need to preallocate when calling between different languages.  If you were staying purely in C, you could let the callee allocate it and burden the caller with freeing it.  Strictly speaking, you can do that with VB->C as well, but it's more troublesome.