home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / hawkco / hawkcode.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-01  |  626 b   |  21 lines

  1. //--------------------------------------------------------------------------------------
  2. //- HawkCode.dll 
  3. //  Copyright (C) 1993 Hawk Data Processing, Inc
  4. //  All rights reserved.
  5. //  This dll is used to encrypt/decrypt strings
  6. //-------------------------------------------------------------------------------------- 
  7. //          -----
  8.  
  9. #ifdef __cplusplus     
  10. extern "C" {
  11. #endif  /* __cplusplus */
  12.      
  13. int FAR PASCAL _export    Encrypt(char FAR* pszValue,const char FAR* pszKey = NULL);
  14. int FAR PASCAL _export    Decrypt(char FAR* pszValue,const char FAR* pszKey = NULL); 
  15.  
  16.  
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20.  
  21.