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.
|
|
//-------------------------------------------------------------------
//
// File: SelRange.h
//
// Contents:
// This file contians Selection Range handling definitions.
//
// History:
// 14-Oct-94 MikeMi Created
//
//-------------------------------------------------------------------
#ifndef __SELRANGE_H__
#define __SELRANGE_H__
#include <windows.h>
#include <limits.h>
#define SELRANGE_MINVALUE 0
#define SELRANGE_MAXVALUE LONG_MAX - 2
#define SELRANGE_ERROR LONG_MAX
typedef HANDLE HSELRANGE;
#ifdef __cplusplus
extern "C" { #endif
ILVRange *LVRange_Create( );
#ifdef __cplusplus
} #endif
#endif
|