Commit 07d0c31c authored by Alexandre Julliard's avatar Alexandre Julliard

Removed unused STRUCT32_NCCALCSIZE functions.

parent ef55932f
...@@ -25,11 +25,10 @@ ...@@ -25,11 +25,10 @@
#include "callback.h" #include "callback.h"
#include "builtin16.h" #include "builtin16.h"
#include "debugtools.h" #include "debugtools.h"
#include "struct32.h"
#include "winerror.h" #include "winerror.h"
DEFAULT_DEBUG_CHANNEL(keyboard) DEFAULT_DEBUG_CHANNEL(keyboard);
DECLARE_DEBUG_CHANNEL(event) DECLARE_DEBUG_CHANNEL(event);
/**********************************************************************/ /**********************************************************************/
......
...@@ -69,28 +69,6 @@ void STRUCT32_WINDOWPOS16to32( const WINDOWPOS16* from, WINDOWPOS* to ) ...@@ -69,28 +69,6 @@ void STRUCT32_WINDOWPOS16to32( const WINDOWPOS16* from, WINDOWPOS* to )
to->flags = (UINT)from->flags; to->flags = (UINT)from->flags;
} }
void STRUCT32_NCCALCSIZE32to16Flat( const NCCALCSIZE_PARAMS* from,
NCCALCSIZE_PARAMS16* to, int validRects )
{
CONV_RECT32TO16( &from->rgrc[0], &to->rgrc[0] );
if (validRects)
{
CONV_RECT32TO16( &from->rgrc[1], &to->rgrc[1] );
CONV_RECT32TO16( &from->rgrc[2], &to->rgrc[2] );
}
}
void STRUCT32_NCCALCSIZE16to32Flat( const NCCALCSIZE_PARAMS16* from,
NCCALCSIZE_PARAMS* to, int validRects )
{
CONV_RECT16TO32( &from->rgrc[0], &to->rgrc[0] );
if (validRects)
{
CONV_RECT32TO16( &from->rgrc[1], &to->rgrc[1] );
CONV_RECT32TO16( &from->rgrc[2], &to->rgrc[2] );
}
}
/* The strings are not copied */ /* The strings are not copied */
void STRUCT32_CREATESTRUCT32Ato16( const CREATESTRUCTA* from, void STRUCT32_CREATESTRUCT32Ato16( const CREATESTRUCTA* from,
CREATESTRUCT16* to ) CREATESTRUCT16* to )
......
...@@ -11,12 +11,6 @@ extern void STRUCT32_MINMAXINFO32to16( const MINMAXINFO*, MINMAXINFO16* ); ...@@ -11,12 +11,6 @@ extern void STRUCT32_MINMAXINFO32to16( const MINMAXINFO*, MINMAXINFO16* );
extern void STRUCT32_MINMAXINFO16to32( const MINMAXINFO16*, MINMAXINFO* ); extern void STRUCT32_MINMAXINFO16to32( const MINMAXINFO16*, MINMAXINFO* );
extern void STRUCT32_WINDOWPOS32to16( const WINDOWPOS*, WINDOWPOS16* ); extern void STRUCT32_WINDOWPOS32to16( const WINDOWPOS*, WINDOWPOS16* );
extern void STRUCT32_WINDOWPOS16to32( const WINDOWPOS16*, WINDOWPOS* ); extern void STRUCT32_WINDOWPOS16to32( const WINDOWPOS16*, WINDOWPOS* );
extern void STRUCT32_NCCALCSIZE32to16Flat( const NCCALCSIZE_PARAMS *from,
NCCALCSIZE_PARAMS16 *to,
int validRects );
extern void STRUCT32_NCCALCSIZE16to32Flat( const NCCALCSIZE_PARAMS16* from,
NCCALCSIZE_PARAMS* to,
int validRects );
void STRUCT32_MSG16to32(const MSG16 *msg16,MSG *msg32); void STRUCT32_MSG16to32(const MSG16 *msg16,MSG *msg32);
void STRUCT32_MSG32to16(const MSG *msg32,MSG16 *msg16); void STRUCT32_MSG32to16(const MSG *msg32,MSG16 *msg16);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment