Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
813 B

  1. /*------------------------------------------------------------------------------
  2. Name definition:
  3. _AC_H is used to avoid multiple inclusion.
  4. ------------------------------------------------------------------------------*/
  5. #ifndef _AC_H
  6. #define _AC_H
  7. #include "compcert.h"
  8. /*------------------------------------------------------------------------------
  9. Functions Prototypes definitions
  10. ------------------------------------------------------------------------------*/
  11. #ifdef __cplusplus
  12. extern "C"
  13. {
  14. #endif
  15. int AcAd8_Encode(BLOC *pInBloc, BLOC *pOutBloc);
  16. int AcAd8_Decode(BLOC *pInBloc, BLOC *pOutBloc);
  17. int AcFx8_Encode(BLOC *pInBloc, BLOC *pOutBloc);
  18. int AcFx8_Decode(BLOC *pInBloc, BLOC *pOutBloc);
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22. #endif