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.
38 lines
490 B
38 lines
490 B
/*++
|
|
|
|
Copyright (c) 1994-1998, Microsoft Corporation All rights reserved.
|
|
|
|
Module Name:
|
|
|
|
mousectl.h
|
|
|
|
Abstract:
|
|
|
|
This module contains the header information for the Mouse control.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
|
|
|
|
#ifndef _MOUSECTL_H
|
|
#define _MOUSECTL_H
|
|
|
|
|
|
|
|
#define MOUSECTL_CLASSNAME TEXT("PropertyMouseButtonControl")
|
|
|
|
|
|
BOOL
|
|
RegisterMouseControlStuff(
|
|
HINSTANCE instance);
|
|
|
|
void
|
|
MouseControlSetSwap(
|
|
HWND window,
|
|
BOOL swap);
|
|
|
|
|
|
|
|
#endif
|