home *** CD-ROM | disk | FTP | other *** search
- //--------------------------------------------------------------------------------------
- //- HawkCode.dll
- // Copyright (C) 1993 Hawk Data Processing, Inc
- // All rights reserved.
- // This dll is used to encrypt/decrypt strings
- //--------------------------------------------------------------------------------------
- // -----
-
- #ifdef __cplusplus
- extern "C" {
- #endif /* __cplusplus */
-
- int FAR PASCAL _export Encrypt(char FAR* pszValue,const char FAR* pszKey = NULL);
- int FAR PASCAL _export Decrypt(char FAR* pszValue,const char FAR* pszKey = NULL);
-
-
- #ifdef __cplusplus
- }
- #endif
-
-