|
-
Oct 7th, 2002, 07:35 PM
#1
Thread Starter
Hyperactive Member
large dlls!!! small amount of code
i make a dll with
int PStrReplace(char*,char*,char*,char*);
int PStrReplace(char* lpString,char* lpReplace,char* lpReplacewith,char* lpbuffer)
{
int RDTS_CCOUNTER;
__asm {
rdtsc;
mov RDTS_CCOUNTER,eax;
}
return 0;
}
and its 200k!!!!!!!!! and i debug it it has all loads of carp i dont need or put in there, it imports at least 50 apis i dont use and never referenced, why???/ and it has a bigilion 00000000000000s at the end, gezee, how can i make it small????//
I know a lot oF Vb, expert in C++, and i think in assembly.
MSVC++6.NET
vb6
masm
Windowz Xp
I find my self using this a lot in C++
__asm {
}
-
Oct 7th, 2002, 08:06 PM
#2
Fanatic Member
Hmm...are you using Visual C++? If you are, try changing the build settings from "Debug" to "Release".
Alcohol & calculus don't mix.
Never drink & derive.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|