Click here to Skip to main content
15,914,312 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: calling a DLL in Visual C++ Pin
Geert Craessaerts30-Mar-03 22:11
Geert Craessaerts30-Mar-03 22:11 
GeneralRe: calling a DLL in Visual C++ Pin
De Nardis Andrea30-Mar-03 22:31
De Nardis Andrea30-Mar-03 22:31 
GeneralRe: calling a DLL in Visual C++ Pin
Geert Craessaerts30-Mar-03 22:52
Geert Craessaerts30-Mar-03 22:52 
GeneralRe: calling a DLL in Visual C++ Pin
De Nardis Andrea30-Mar-03 23:37
De Nardis Andrea30-Mar-03 23:37 
Questionhow to program GUI for c in Visual C++? Pin
jcute30-Mar-03 8:30
jcute30-Mar-03 8:30 
AnswerRe: how to program GUI for c in Visual C++? Pin
Amit Dey30-Mar-03 8:47
Amit Dey30-Mar-03 8:47 
AnswerRe: how to program GUI for c in Visual C++? Pin
Christian Graus30-Mar-03 10:35
protectorChristian Graus30-Mar-03 10:35 
GeneralRe: how to program GUI for c in Visual C++? Pin
Debs30-Mar-03 22:55
Debs30-Mar-03 22:55 
GeneralGet image of toolbar button Pin
User 665830-Mar-03 6:02
User 665830-Mar-03 6:02 
GeneralRe: Get image of toolbar button Pin
User 665830-Mar-03 7:15
User 665830-Mar-03 7:15 
GeneralClearing a vector Pin
Makover30-Mar-03 4:41
Makover30-Mar-03 4:41 
GeneralRe: Clearing a vector Pin
Chris Losinger30-Mar-03 4:57
professionalChris Losinger30-Mar-03 4:57 
GeneralRe: Clearing a vector Pin
Makover30-Mar-03 5:18
Makover30-Mar-03 5:18 
GeneralRe: Clearing a vector Pin
Joaquín M López Muñoz30-Mar-03 5:35
Joaquín M López Muñoz30-Mar-03 5:35 
GeneralRe: Clearing a vector Pin
Chris Losinger30-Mar-03 5:37
professionalChris Losinger30-Mar-03 5:37 
GeneralRe: Clearing a vector Pin
Makover30-Mar-03 5:50
Makover30-Mar-03 5:50 
Generalfunction from dll Pin
_crs_30-Mar-03 4:41
_crs_30-Mar-03 4:41 
GeneralRe: function from dll Pin
valikac30-Mar-03 5:40
valikac30-Mar-03 5:40 
GeneralRe: function from dll Pin
codeant30-Mar-03 5:41
codeant30-Mar-03 5:41 
It sound likes that you does not export the function "DWORD test(DWORD x)",
you can get your current exports table via typing "dumpbin /exports test.dll" in console. In normally, VC6 exports your test function in this form:
_test@2

For telling the compiler we need to export this function in standard mode, save follow lines in notepad in a .def file and then add it to your dll project:
EXPORTS
test

At the end, change declares line "DWORD test(DWORD x)" to "__declspec(dllexport) DWORD test(DWORD x)" for avoid the warning(dllexport assumed).


Good Luck.
GeneralRe: function from dll Pin
_crs_30-Mar-03 6:57
_crs_30-Mar-03 6:57 
GeneralShow New Window Pin
zeki yugnak30-Mar-03 1:25
zeki yugnak30-Mar-03 1:25 
GeneralRe: Show New Window Pin
Brian Shifrin30-Mar-03 2:22
Brian Shifrin30-Mar-03 2:22 
GeneralRe: Show New Window Pin
Ravi Bhavnani30-Mar-03 2:46
professionalRavi Bhavnani30-Mar-03 2:46 
GeneralRe: Show New Window Pin
zeki yugnak30-Mar-03 3:30
zeki yugnak30-Mar-03 3:30 
QuestionWhere's the toolbar? Pin
Vikram A Punathambekar29-Mar-03 18:25
Vikram A Punathambekar29-Mar-03 18:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.