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.
 
 
 
 
 
 

38 lines
890 B

//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1991 - 1998.
//
// File: kcurstk.cxx
//
// Contents: Cursor Stack Classes
//
// Classes: CKeyCurStack
//
// History: 20-Jan-92 AmyA Created
// 05-Feb-92 BartoszM Added CCurArray
// 19-Feb-92 AmyA Added COccCurArray
//
//----------------------------------------------------------------------------
#include <pch.cxx>
#pragma hdrstop
#include <keycur.hxx>
#include <curstk.hxx>
#include "wlcursor.hxx"
CKeyCursor* CKeyCurStack::QueryWlCursor(WORKID widMax)
{
if (Count() == 0)
return 0;
if (Count() == 1)
return Pop();
return new CWlCursor(Count(), *this, widMax );
}