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.

29 lines
555 B

  1. ////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // File: Splash.h
  4. // Created: Jan 1996
  5. // By: Ryan Marshall (a-ryanm) and Martin Holladay (a-martih)
  6. //
  7. // Project: Resource Kit Desktop Switcher (MultiDesk)
  8. //
  9. //
  10. ////////////////////////////////////////////////////////////////////////////////
  11. #ifndef __MULTIDESK_SPLASH_H__
  12. #define __MULTIDESK_SPLASH_H__
  13. //
  14. // Function Prototypes
  15. //
  16. INT DoSplashWindow(LPVOID hData);
  17. typedef struct _SPLASH_DATA
  18. {
  19. HINSTANCE hInstance;
  20. } SPLASH_DATA, * PSPLASH_DATA;
  21. #endif