I have a situation now....
I just finished my CCSREG.DLL which creates, checks, verifies registration numbers for shareware (it's crackable but works like a car door lock, keeps honest people out)...
Now, I separately created a .INC file for all of the calls I make in the DLL.
The DLL is 100% separate from my COMMON DLL's I used, except I cut and pasted some functions from my date DLL and my common DLL.
With thesame name I get a duplicate definition issue, except i"m calling a different Lib.
Example:
Declare Function One Lib "CCS.DLL"(two as string) as long
Declare Function Two Lib "CCSREG.DLL"(two as string) as long
Is there a way to avoid this or do I have to change the function names? (I hope not)...
I'm wondering if $IF DEF or something like that can help me out since I never really used them before...
Thanks,
Scott
-------------
Scott
mailto:[email protected][email protected]</A>
MCSE, MCP+Internet
I just finished my CCSREG.DLL which creates, checks, verifies registration numbers for shareware (it's crackable but works like a car door lock, keeps honest people out)...
Now, I separately created a .INC file for all of the calls I make in the DLL.
The DLL is 100% separate from my COMMON DLL's I used, except I cut and pasted some functions from my date DLL and my common DLL.
With thesame name I get a duplicate definition issue, except i"m calling a different Lib.
Example:
Declare Function One Lib "CCS.DLL"(two as string) as long
Declare Function Two Lib "CCSREG.DLL"(two as string) as long
Is there a way to avoid this or do I have to change the function names? (I hope not)...
I'm wondering if $IF DEF or something like that can help me out since I never really used them before...
Thanks,
Scott
-------------
Scott
mailto:[email protected][email protected]</A>
MCSE, MCP+Internet
Comment