css.h
Upload User: aoeyumen
Upload Date: 2007-01-06
Package Size: 3329k
Code Size: 1k
Category:

DVD

Development Platform:

Unix_Linux

  1. /* 
  2.  *  css.h
  3.  *
  4.  *  Released under the version 2 of the GPL.
  5.  *
  6.  *  Copyright 1999 Derek Fawcus / M Roberts
  7.  *
  8.  *  This file contains declarations common to more than one CSS program#
  9.  *
  10.  */
  11. #ifndef CSS_H
  12. #define CSS_H
  13. typedef unsigned char byte;
  14. /*
  15. Tables defined in csstable.c
  16. */
  17. extern byte CSSvarients[32];
  18. extern byte CSSsecret[5];
  19. extern byte CSSmangle0[256], CSSmangle1[256], CSSmangle2[256];
  20. extern byte reverse[256];
  21. /*
  22. Debug functions defined in cssdebug.c
  23. */
  24. void print_tab( byte const * b, int len);
  25. #endif