Home
last modified time | relevance | path

Searched refs:s_staticPoints (Results 1 – 1 of 1) sorted by relevance

/reactos/base/applications/mspaint/
H A Dmouse.cpp14 static POINT s_staticPoints[512]; // 512 is enough variable
15 static SIZE_T s_maxPoints = _countof(s_staticPoints);
16 static LPPOINT s_pPoints = s_staticPoints;
108 if (s_pPoints != s_staticPoints) in reset()
111 s_pPoints = s_staticPoints; in reset()
112 s_maxPoints = _countof(s_staticPoints); in reset()
155 if (s_pPoints == s_staticPoints) in pushToPoints()
156 CopyMemory(s_dynamicPoints, s_staticPoints, s_cPoints * sizeof(POINT)); in pushToPoints()