all groups > visual c libraries > august 2006
Getting error error LNK2019: unresolved external symbol "int __cdecl
Posted by sethuganesh NO[at]SPAM gmail.com at 8/23/2006 6:49:41 AM
Hi,
i have written a function in one dll.i am not able to use the function
in another dll.it throws linker error as
error LNK2019: unresolved external symbol "int __cdecl function()".i
throws error only if i build it in release mode , whereas in debug mode
it does'nt.
if anyone experien... more >>
Import Address Table
Posted by Mike C# at 8/18/2006 4:11:55 PM
Hi all,
Can someone point me in the direction of a how-to for reading the Import
Address Table for an .exe or .dll file? I'm trying to programmatically
determine DLL dependencies (like Depends.exe, but in my own application).
Also, is there a way to determine LoadLibrary dependencies progr... more >>
LNK2019 static link
Posted by Mike C# at 8/16/2006 5:17:47 PM
Hi all,
I'm trying to static link a .LIB file (the ZLib zlibstat.lib file to be
exact) to a VC++ app. I have the correct LIB file and I've added the header
file and #pragma comment(lib, "zlibstat.lib") line to my code. But I keep
getting errors like this:
imp_title error LNK2019: unres... more >>
A error with fwrite?
Posted by dwbclz at 8/16/2006 4:35:02 AM
The following is my code:
#include <stdio.h>
#include <string.h>
int main(int argc, char *argv[])
{
char buf[128];
memset(buf, 0, sizeof(buf));
FILE *fp = fopen("prepatch.log", "wb+");
fwrite(buf, 1, sizeof(buf), fp);
fseek(fp, 0, SEEK_SET);
#if 1
fread(buf... more >>
VC++ 7.1 Static Link Library
Posted by Mike C# at 8/11/2006 3:16:27 PM
Hi all,
Was playing around and testing some things, and I have a few questions. Is
it possible to statically link to a pre-compiled DLL? For instance, I was
playing with a sample that uses odbcbcp.dll but can't figure out if it's
possible to statically link to it. I noticed that odbcbcp.... more >>
Exception 03H in module KERNEL32.DLL
Posted by Mullai at 8/7/2006 12:08:41 AM
Hi Friends,
My exe gives an error msg like Exception 03H in module
KERNEL32.DLL very often. I am working in VC++ 6.0 ver, mfc and gdi
plus.
PG1609VZ caused an exception 03H in module KERNEL32.DLL at
017f:bff768a1.
Registers:
EAX=00000000 CS=017f EIP=bff768a1 EFLGS=00000247
EBX=0... more >>
|