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.
35 lines
898 B
35 lines
898 B
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// File: Cmdhand.h
|
|
//
|
|
// Created: Jan 1996
|
|
// By Ryan D. Marshall (ryanm)
|
|
// Martin Holladay (a-martih)
|
|
//
|
|
// Project: Resource Kit Desktop Switcher
|
|
//
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __MULTIDESK_CMDHAND_H__
|
|
#define __MULTIDESK_CMDHAND_H__
|
|
|
|
//
|
|
// Command Handlers
|
|
//
|
|
LRESULT CALLBACK TransparentMessageProc(HWND hWnd, UINT uMessage, WPARAM wParam, LPARAM lParam);
|
|
LRESULT CALLBACK MainMessageProc(HWND hWnd, UINT uMessage, WPARAM wParam, LPARAM lParam);
|
|
LRESULT CALLBACK RenameDialogProc(HWND hWnd, UINT uMesssage, WPARAM wParam, LPARAM lParam);
|
|
|
|
//
|
|
// Local Function Prototypes
|
|
//
|
|
void CreateNewDesktop(HWND hWnd);
|
|
BOOL DeleteCurrentDesktop(HWND hWnd);
|
|
BOOL DeleteDesktop(HWND hWnd, UINT nDesktop);
|
|
void SwitchToDesktop(UINT nDesktop);
|
|
|
|
|
|
#endif
|
|
|