mirror of https://github.com/tongzx/nt5src
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
29 lines
555 B
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// File: Splash.h
|
|
// Created: Jan 1996
|
|
// By: Ryan Marshall (a-ryanm) and Martin Holladay (a-martih)
|
|
//
|
|
// Project: Resource Kit Desktop Switcher (MultiDesk)
|
|
//
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __MULTIDESK_SPLASH_H__
|
|
#define __MULTIDESK_SPLASH_H__
|
|
|
|
//
|
|
// Function Prototypes
|
|
//
|
|
|
|
INT DoSplashWindow(LPVOID hData);
|
|
|
|
typedef struct _SPLASH_DATA
|
|
{
|
|
HINSTANCE hInstance;
|
|
} SPLASH_DATA, * PSPLASH_DATA;
|
|
|
|
|
|
#endif
|
|
|