mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 22:50:43 +00:00
bc5477f7d2
structures. Also moved the SAFEARRAY definition (yet again) to the obj_oleaut.h file.
24 lines
558 B
C
24 lines
558 B
C
#ifndef __WINE_OAIDL_H
|
|
#define __WINE_OAIDL_H
|
|
|
|
|
|
#include "wine/obj_base.h"
|
|
|
|
/* the following depend only on obj_base.h */
|
|
#include "wine/obj_oleaut.h"
|
|
|
|
typedef enum tagCALLCONV {
|
|
CC_CDECL = 1,
|
|
CC_MSCPASCAL = CC_CDECL + 1,
|
|
CC_PASCAL = CC_MSCPASCAL,
|
|
CC_MACPASCAL = CC_PASCAL + 1,
|
|
CC_STDCALL = CC_MACPASCAL + 1,
|
|
CC_RESERVED = CC_STDCALL + 1,
|
|
CC_SYSCALL = CC_RESERVED + 1,
|
|
CC_MPWCDECL = CC_SYSCALL + 1,
|
|
CC_MPWPASCAL = CC_MPWCDECL + 1,
|
|
CC_MAX = CC_MPWPASCAL + 1
|
|
} CALLCONV;
|
|
|
|
#endif /* _WINE_OAIDL_H */
|