Source code of Windows XP (NT5)
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.

33 lines
480 B

  1. #if !defined(LOGON__Fx_h__INCLUDED)
  2. #define LOGON__Fx_h__INCLUDED
  3. #pragma once
  4. #ifdef GADGET_ENABLE_GDIPLUS
  5. enum EFadeDirection
  6. {
  7. fdIn,
  8. fdOut
  9. };
  10. void
  11. FxSetAlpha(
  12. IN Element * pe,
  13. IN float flNewAlpha);
  14. HRESULT
  15. FxPlayLinearAlpha(
  16. IN Element * pe,
  17. IN float flOldAlpha,
  18. IN float flNewAlpha,
  19. IN float flDuration = 0.5f,
  20. IN float flDelay = 0.0f);
  21. HRESULT
  22. FxInitGuts();
  23. #endif // GADGET_ENABLE_GDIPLUS
  24. #endif // LOGON__Fx_h__INCLUDED