splash.h

来自「CC386 is a general-purpose 32-bit C comp」· C头文件 代码 · 共 44 行

H
44
字号
/******************************************************************************/
/* FILE           : splash.h  -  Splash screen include file                   */
/* DESCRIPTION    : Structures/definitions for splash screen functions        */
/* LANGUAGE       : "C"                                                       */
/* PLATFORM       : Windows 95/98/98SE/ME/NT4/2000                            */
/* AUTHOR         : Andrea Binello  <andrea.binello@tiscalinet.it>            */
/* LICENSE        : Freeware - Open Source                                    */
/* LAST UPDATE    : May 06, 2001                                              */
/******************************************************************************/

#ifndef __SPLASH_H__
    #define __SPLASH_H__

    #ifdef __cplusplus
        extern "C"
        {
        #endif 

        typedef struct
        {
            HWND hWndOwner;
            HINSTANCE hInstance;
            HINSTANCE hInstanceRes;
            LPSTR lpszResource;
            USHORT uTime;
            BOOL bCentered;
            BOOL bTopmost;
            BOOL bWait;
            BOOL bAbout;
            INT iPosX;
            INT iPosY;
            RECT bPos;
            LPSTR lpszButtonTitle;
            LPSTR lpszVersion;
        } SPLASH, FAR *LPSPLASH;

        VOID WINAPI SplashScreen(LPSPLASH lpSplash);

        #ifdef __cplusplus
        }
    #endif 

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?