Commit db7383d9 authored by Charles Davis's avatar Charles Davis Committed by Alexandre Julliard

winemenubuilder: Don't define crc16() on Mac OS.

parent 1f1a97a9
......@@ -199,6 +199,7 @@ static WCHAR* assoc_query(ASSOCSTR assocStr, LPCWSTR name, LPCWSTR extra);
static HRESULT open_icon(LPCWSTR filename, int index, BOOL bWait, IStream **ppStream);
/* Utility routines */
#ifndef __APPLE__
static unsigned short crc16(const char* string)
{
unsigned short crc = 0;
......@@ -217,6 +218,7 @@ static unsigned short crc16(const char* string)
}
return crc;
}
#endif
static char *strdupA( const char *str )
{
......
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