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.
49 lines
524 B
49 lines
524 B
/*++
|
|
Copyright (c) 1997 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
DOCK.H
|
|
|
|
Abstract:
|
|
|
|
This module contains the common private declarations for the undock tester
|
|
|
|
|
|
Author:
|
|
|
|
Kenneth Ray
|
|
|
|
Environment:
|
|
|
|
User Mode Only
|
|
|
|
Notes:
|
|
|
|
|
|
Revision History:
|
|
|
|
Created June 98
|
|
|
|
--*/
|
|
|
|
#ifndef DOCK_H
|
|
#define DOCK_H
|
|
|
|
|
|
#pragma warning(error:4100) // Unreferenced formal parameter
|
|
#pragma warning(error:4705) // Statement has no effect
|
|
|
|
|
|
#define MIN(_A_,_B_) (((_A_) < (_B_)) ? (_A_) : (_B_))
|
|
|
|
|
|
//
|
|
// Prototypes
|
|
//
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|