Leaked source code of windows server 2003
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.
 
 
 
 
 
 

24 lines
611 B

//----------------------------------------------------------------------------
//
// rampmisc.h
//
// Miscellaneous stuff needed to compile imported ramp code.
//
// Copyright (C) Microsoft Corporation, 1997.
//
//----------------------------------------------------------------------------
#ifndef _RAMPMISC_H_
#define _RAMPMISC_H_
#define VALPTOD(f,prec) ((double) (f))
#define NORMAL_PREC 16
#define VALTOD(f) VALPTOD(f,NORMAL_PREC)
// Macro to retrieve SPANTEX pointer
#define HANDLE_TO_SPANTEX(hTex) \
(*(PD3DI_SPANTEX *)ULongToPtr(hTex))
#endif // _RAMPMISC_H_