50 lines
524 B
C
50 lines
524 B
C
|
/*++
|
||
|
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
|
||
|
|