#define GHND (GMEM_MOVEABLE | GMEM_ZEROINIT)
#define GPTR (GMEM_FIXED | GMEM_ZEROINIT)
+#define INVALID_ATOM ((ATOM)0)
+#define MAXINTATOM 0xc000
#define MAKEINTATOMA(atom) ((LPCSTR)((ULONG_PTR)((WORD)(atom))))
#define MAKEINTATOMW(atom) ((LPCWSTR)((ULONG_PTR)((WORD)(atom))))
#define MAKEINTATOM WINELIB_NAME_AW(MAKEINTATOM)
#include <ctype.h>
#include "windef.h"
+#include "winbase.h"
#include "winerror.h"
#include "wine/server.h"
DEFAULT_DEBUG_CHANNEL(atom);
#define DEFAULT_ATOMTABLE_SIZE 37
-#define MIN_STR_ATOM 0xc000
#define MAX_ATOM_LEN 255
#define ATOMTOHANDLE(atom) ((HANDLE16)(atom) << 2)
}
if (*atomstr) return FALSE;
}
- if (!atom || (atom >= MIN_STR_ATOM))
+ if (!atom || (atom >= MAXINTATOM))
{
SetLastError( ERROR_INVALID_PARAMETER );
atom = 0;
}
if (*atomstr) return FALSE;
}
- if (!atom || (atom >= MIN_STR_ATOM))
+ if (!atom || (atom >= MAXINTATOM))
{
SetLastError( ERROR_INVALID_PARAMETER );
atom = 0;
*/
HANDLE16 WINAPI GetAtomHandle16( ATOM atom )
{
- if (atom < MIN_STR_ATOM) return 0;
+ if (atom < MAXINTATOM) return 0;
return ATOMTOHANDLE( atom );
}
HANDLE16 entry, *prevEntry;
WORD hash;
- if (atom < MIN_STR_ATOM) return 0; /* Integer atom */
+ if (atom < MAXINTATOM) return 0; /* Integer atom */
if (CURRENT_DS == ATOM_UserDS) return GlobalDeleteAtom( atom );
TRACE("0x%x\n",atom);
TRACE("%x\n",atom);
if (!count) return 0;
- if (atom < MIN_STR_ATOM)
+ if (atom < MAXINTATOM)
{
sprintf( text, "#%d", atom );
len = strlen(text);
static ATOM ATOM_DeleteAtom( ATOM atom, BOOL local)
{
TRACE( "(%s) %x\n", local ? "local" : "global", atom );
- if (atom < MIN_STR_ATOM) atom = 0;
+ if (atom < MAXINTATOM) atom = 0;
else
{
SERVER_START_REQ( delete_atom )
SetLastError( ERROR_MORE_DATA );
return 0;
}
- if (atom < MIN_STR_ATOM)
+ if (atom < MAXINTATOM)
{
char name[8];
if (!atom)
SetLastError( ERROR_MORE_DATA );
return 0;
}
- if (atom < MIN_STR_ATOM)
+ if (atom < MAXINTATOM)
{
char name[8];
if (!atom)