This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/h/nt/lmmsg.h

59 lines
1.6 KiB
C
Raw Permalink Normal View History

/*
* lmmsg.h LAN Manager message functions
*
* =========================================================================
*
* Open Watcom Project
*
* Copyright (c) 2004-2010 The Open Watcom Contributors. All Rights Reserved.
*
* This file is automatically generated. Do not edit directly.
*
* =========================================================================
*/
#ifndef _LMMSG_
#define _LMMSG_
#ifndef _ENABLE_AUTODEPEND
#pragma read_only_file;
#endif
#ifdef __cplusplus
extern "C" {
#endif
/* Message forward flags */
#define MSGNAME_NOT_FORWARDED 0x00000000L
#define MSGNAME_FORWARDED_TO 0x00000004L
#define MSGNAME_FORWARDED_FROM 0x00000010L
/* Message information (level 0) */
typedef struct _MSG_INFO_0 {
LPWSTR msgi0_name;
} MSG_INFO_0;
typedef MSG_INFO_0 *PMSG_INFO_0;
typedef MSG_INFO_0 *LPMSG_INFO_0;
/* Message information (level 1) */
typedef struct _MSG_INFO_1 {
LPWSTR msgi1_name;
DWORD msgi1_forward_flag;
LPWSTR msgi1_forward;
} MSG_INFO_1;
typedef MSG_INFO_1 *PMSG_INFO_1;
typedef MSG_INFO_1 *LPMSG_INFO_1;
/* Functions in NETAPI32.DLL */
NET_API_STATUS NET_API_FUNCTION NetMessageBufferSend( LPCWSTR, LPCWSTR, LPCWSTR, LPBYTE, DWORD );
NET_API_STATUS NET_API_FUNCTION NetMessageNameAdd( LPCWSTR, LPCWSTR );
NET_API_STATUS NET_API_FUNCTION NetMessageNameDel( LPCWSTR, LPCWSTR );
NET_API_STATUS NET_API_FUNCTION NetMessageNameEnum( LPCWSTR, DWORD, LPBYTE *, DWORD, LPDWORD, LPDWORD, LPDWORD );
NET_API_STATUS NET_API_FUNCTION NetMessageNameGetInfo( LPCWSTR, LPCWSTR, DWORD, LPBYTE * );
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* _LMMSG_ */