all groups > visual c libraries > may 2005
How to watch the export functions from a managed DLL?
Posted by joye at 5/27/2005 12:00:00 AM
Hello,
I can use the tool such as dllexp.exe to watch the export functions which
built by unmanagedC++, but I can not watch the export function or class
built by managedC++ .
Who know where has the tool that can watch this?
Thanks.
Regards,
Tsung-Yu
... more >>
can't see System::Web::Hosting from C++
Posted by Ron James at 5/24/2005 10:12:04 AM
I've created a managed C++ Console application and added System.Web to the
references. Then I enter the followng using statements:
using namespace System;
using namespace System::Web;
using namespace System::Web::Hosting;
using namespace System::Web::Configuration;
using namespace System::... more >>
link error LNK2019
Posted by Paul Li via .NET 247 at 5/23/2005 12:02:40 PM
------ Build started: Project: VESTA_SOAP, Configuration: Debug Win32 ------
Compiling...
VESTA_SOAP.cpp
Linking...
VESTA_SOAP.obj : error LNK2019: unresolved external symbol __imp__WSACleanup@0 referenced in function _main
VESTA_SOAP.obj : error LNK2019: unresolved external symbol __imp__clo... more >>
How to use C# to call the existing libraries containing unmanaged C++ classes directly?
Posted by joye at 5/19/2005 12:00:00 AM
Hello,
My question is how to use C# to call the existing libraries containing
unmanaged C++ classes directly, but not use C# or managed C++ wrappers
unmanaged C++ classes?
Does anyone know how to do that?
Thanks.
Tsung-Yu
... more >>
Secure code not dissasemblable with ildasm??
Posted by Rober at 5/13/2005 12:00:00 AM
¿Secure c++ .net 2003 code not dissasemblable with ildasm?
Thank you.
... more >>
Catching "Debug errors"
Posted by Sean Connery at 5/9/2005 10:09:01 AM
With the new runtime checks for stack corruption and uninitialized variables,
I get errors like:
---------------------------
Microsoft Visual C++ Debug Library
---------------------------
Debug Error!
Program: \path\to\program
Module: \path\to\dll
File: \path\to\source\file.cpp
Line: 9... more >>
share data between different dlls
Posted by Rich at 5/6/2005 2:10:02 AM
Hi there,
For a quite big application, I need to get large amount of data within a
static library (xxx.lib) and put them in a database (a class, say we call it
CData), and then make it accessible by a few different dynamic library files
(yyy.dll, …). I’ve tried to create a global class ... more >>
|