Log in

View Full Version : Cracking Delphi programs with DeDe


Acid_Cool_178
March 1st, 2001, 02:47
As ususal i'm are using DeDe alot these days....

I have some problems on these API's

* Reference to: Sysutils.StrLen()
* Reference to: System..LStrToPChar()
* Reference to: Sysutils.IntToHex(Int64; Integer)

I can't get them to calculate in my brain yet, so any ideas on what they mean ??

-Acid_Cool_178

goatass
March 2nd, 2001, 17:10
they are pretty simple, they do what they say:

StrLen() returns the length of a given string
LStrToPChar() converts a string to an array of characters and returns a pointer to that array.
IntToHex() converts an integer to its Hex representation.

goatass