York Jong's personal annotations on this page
Yorkjong bookmarked
on 2009-04-07
A library is a group of functions, classes, or other resources that can be made available to programs that need already implemented entities without the need to know how these functions, classes, or resources were created or how they function.
-
There are two broad categories of libraries you will deal with in your programs:
static libraries and dynamic libraries. -
A static library created can be used by either a
console application, a Win32 application, or a VCL application. That's one
of its advantages -
On the DLL Wizard, click the C++ radio button and only the Use VCL
check box -

-
extern "C" __declspec(dllexport)
-
To get the DLL ready for use, you will have to import it using the Implib utility.
-

-
extern "C" __declspec(dllimport)void BoxProperties(double L, double H,
double W, double& A, double& V); -
BoxProperties(Length, Height, Width, Area, Volume);
This link has been bookmarked by 1 people . It was first bookmarked on 07 Apr 2009, by York Jong.
-
York JongA library is a group of functions, classes, or other resources that can be made available to programs that need already implemented entities without the need to know how these functions, classes, or resources were created or how they function.
-
There are two broad categories of libraries you will deal with in your programs:
static libraries and dynamic libraries. -
A static library created can be used by either a
console application, a Win32 application, or a VCL application. That's one
of its advantages - 7 more annotations...
-
Would you like to comment?
Join Diigo for a free account, or sign in if you are already a member.