Version: |
2.0 |
Description: |
Clears a DLL from the messaging registry. |
Declaration: |
|
C/C++ |
extern "C" void WINAPI VCClearAlertAppDll(short* iError, char* DllName, char* NativeCmd); |
Delphi |
procedure VCClearAlertAppDll(var iError: Smallint; DllName: PAnsiChar; NativeCmd: PAnsiChar); stdcall; |
ActiveX/COM |
Sub ClearAlertAppDll(ByVal DllName As String, ByVal NativeCmd As String) |
Parameters: |
DLLName - the name of the DLL
to register. |
Notes: |
An option introduced in version 2.0 of Visual CADD™ is to make tools
and interfaces in dynamic link libraries (DLL's). This interface to Visual CADD™ provides all the functionality of the message based EXE tools that
were used with version 1.x. Some advantages to DLLs over EXE are: a DLL
shares the same memory space as Visual CADD™, once loaded into memory,
a DLL will stay in memory until Visual CADD™ closes, code can be run on
load and different code can be run each time a function is called, no
interface or HWND are required, no checking is required to see if Visual CADD™ is running since it is the one calling the DLL, and several tools
can be in one DLL without command line options necessary for EXE to achieve
the same functionality. |
See Also: |