Commit 2956605d authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

user32: Remove unused function.

parent 0e37d57b
......@@ -244,14 +244,6 @@ static inline void push_string( struct packed_message *data, LPCWSTR str )
push_data( data, str, (strlenW(str) + 1) * sizeof(WCHAR) );
}
/* retrieve a pointer to data from a packed message and increment the buffer pointer */
static inline void *get_data( void **buffer, size_t size )
{
void *ret = *buffer;
*buffer = (char *)*buffer + size;
return ret;
}
/* make sure that the buffer contains a valid null-terminated Unicode string */
static inline BOOL check_string( LPCWSTR str, size_t size )
{
......
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