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.
41 lines
871 B
41 lines
871 B
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// STARTUP.H
|
|
//
|
|
// Microsoft Confidential
|
|
// Copyright (c) Microsoft Corporation 1998
|
|
// All rights reserved
|
|
//
|
|
// Includes all external include files, defined values, macros, data
|
|
// structures, and fucntion prototypes for the corisponding CXX file.
|
|
//
|
|
// Jason Cohen (JCOHEN)
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Only include this file once.
|
|
//
|
|
#ifndef _STARTUP_H_
|
|
#define _STARTUP_H_
|
|
|
|
|
|
// Include file(s).
|
|
//
|
|
#include <windows.h>
|
|
|
|
|
|
// External function prototype(s).
|
|
//
|
|
VOID InitStartupMenu(HWND);
|
|
VOID ReleaseStartupMenu(HWND);
|
|
BOOL InitStartupList(HWND);
|
|
BOOL UserHasStartupItems(VOID);
|
|
VOID SelectUserRadio(HWND, BOOL);
|
|
BOOL StartupDrawItem(HWND, const DRAWITEMSTRUCT *);
|
|
VOID StartupSelectItem(HWND);
|
|
|
|
|
|
#endif // _STARTUP_H_
|