Sync with trunk head
[reactos.git] / subsystems / win32 / win32k / include / xformobj.h
1 #pragma once
2
3 ULONG
4 INTERNAL_CALL
5 XFORMOBJ_iSetXform(
6 OUT XFORMOBJ *pxo,
7 IN XFORML * pxform);
8
9 ULONG
10 INTERNAL_CALL
11 XFORMOBJ_iCombine(
12 IN XFORMOBJ *pxo,
13 IN XFORMOBJ *pxo1,
14 IN XFORMOBJ *pxo2);
15
16 ULONG
17 INTERNAL_CALL
18 XFORMOBJ_iCombineXform(
19 IN XFORMOBJ *pxo,
20 IN XFORMOBJ *pxo1,
21 IN XFORML *pxform,
22 IN BOOL bLeftMultiply);
23
24 ULONG
25 INTERNAL_CALL
26 XFORMOBJ_Inverse(
27 OUT XFORMOBJ *pxoDst,
28 IN XFORMOBJ *pxoSrc);