(Visual C++ 5)
Why is it that when I try to cast a class member function as a WNDPROC (long(__stdcall*)(...)) that the compiler complains it is an 'overloaded function' and "None of the functions w...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10142321.html
Zones:
C++Date Answered: 03/24/1999 Grade: A Views: 12
Hi,
I have some DLLs which can be used in C but I need to use them in visual basic. Can I detect how DLLs were exported? using stdcall or cdecl?? if cdecl then can I call functions in the DLLs from...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10177125.html
Zones:
C++Date Answered: 06/30/1999 Grade: B Views: 51
How do I use this in delphi 5.0?
function RegisterServiceProcess(dwProcessID, dwType: Integer):
Integer; stdcall; external 'KERNEL32.DLL';
It always gives me an error:
"Field def...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_11763398.html
I had a fully working multi-threaded windows application.
Unfortunately, I had to convert it to be Object Oriented,
and now I have problems with my CreateThread calls.
I had some module and I wr...
http://www.experts-exchange.com/Programming/System/Windows__Programming/Q_10243805.html
Ok, here is the situation. I have a DLL written in C++. It has the following files.
pascal.h
extern "C" double __stdcall MyFunc (int a, double b);
extern "C" int CdeclFunc (int a);
Then I h...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_11905399.html
Zones:
C++Date Answered: 11/20/2000 Grade: B Views: 0
I have a function pointer declared as follows(outside the class):
typedef void (WINAPI *ActionFunc)(LPVOID params);
Within the class, I have an array of these function pointers, and I would lik...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20067356.html
Zones:
C++Date Answered: 01/31/2001 Grade: B Views: 0
Currently i am working on a project using Code Warrior, i call a function in a dll, dll returns a pointer as
typedef struct tagTWTaux {
char Date[9]; // date de debut au format YYYYMMDD
cha...
http://www.experts-exchange.com/Programming/System/Windows__Programming/MFC/Q_20751876.htm...
Zones:
Windows MFCDate Answered: 09/02/2004 Grade: A Views: 0
I have a VC++ 6.0 project that compiles and works.
I created VC++.NET project (MFC), and copied some code from VC++ 6.0 project.
Project contains a numbet of calls to a DLL. DLL, LIB file and...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20845030.html
Zones:
C++Date Answered: 01/08/2004 Grade: A Views: 0
Hello,
I have code from the book:
Wiley Publishing - For Dummies - 2005 - C++ Timesaving Techniques for Dummies
The code can be downloaded here: www.dummies.com/go/cpluspluststfd (80 KB)
It's ...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_21468105.html
Zones:
C++Date Answered: 06/23/2005 Grade: A Views: 0
Hello. I just want to make a plug-in that will have a dialog
box appear (not embedded in a page).
I am having incredible trouble just doing this.
If
A) Someone could give me some source code whi...
http://www.experts-exchange.com/Programming/System/Windows__Programming/MFC/Q_10005577.htm...