1999-02-09 16:46:25 +01:00
|
|
|
#ifndef __INCLUDE_WINDEF_H
|
|
|
|
#define __INCLUDE_WINDEF_H
|
|
|
|
|
|
|
|
#include "wintypes.h"
|
|
|
|
|
|
|
|
#pragma pack(1)
|
|
|
|
|
1999-02-12 14:44:38 +01:00
|
|
|
#ifndef IN
|
|
|
|
#define IN
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef OUT
|
|
|
|
#define OUT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef OPTIONAL
|
|
|
|
#define OPTIONAL
|
|
|
|
#endif
|
|
|
|
|
1999-02-09 16:46:25 +01:00
|
|
|
/* FIXME: _MAX_PATH should be defined in stdlib.h and MAX_PATH in windef.h
|
|
|
|
* and mapiwin.h
|
|
|
|
*/
|
|
|
|
#define MAX_PATH 260
|
|
|
|
|
|
|
|
#define HFILE_ERROR16 ((HFILE16)-1)
|
1999-02-26 12:11:13 +01:00
|
|
|
#define HFILE_ERROR ((HFILE)-1)
|
1999-02-09 16:46:25 +01:00
|
|
|
|
|
|
|
#pragma pack(4)
|
|
|
|
|
1999-02-13 10:13:49 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* POINTL structure. Used in some OLE calls.
|
|
|
|
*/
|
|
|
|
typedef struct _POINTL
|
|
|
|
{
|
|
|
|
LONG x;
|
|
|
|
LONG y;
|
|
|
|
} POINTL;
|
|
|
|
|
|
|
|
|
1999-02-09 16:46:25 +01:00
|
|
|
#endif /* __INCLUDE_WINDEF_H */
|