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.

52 lines
659 B

  1. /*++
  2. Copyright (c) 1993 Digital Equipment Corporation
  3. Module Name:
  4. anim.h
  5. Abstract:
  6. Animated logo module header file.
  7. Author:
  8. Peter Alschitz (petera) 08-Aug-2000
  9. --*/
  10. #ifndef _ANIM_H
  11. #define _ANIM_H
  12. //
  13. // selection of rotation bar - depends on logo bitmap contants
  14. //
  15. typedef enum {
  16. RB_UNSPECIFIED,
  17. RB_SQUARE_CELLS
  18. } ROT_BAR_TYPE;
  19. //
  20. // Global variables:
  21. //
  22. // type of rotation bar to use
  23. //
  24. extern ROT_BAR_TYPE RotBarSelection;
  25. VOID
  26. InbvRotBarInit(
  27. VOID
  28. );
  29. VOID
  30. InbvRotateGuiBootDisplay(
  31. IN PVOID Context
  32. );
  33. VOID
  34. FinalizeBootLogo(VOID);
  35. #endif // _ANIM_H