ReactOS 0.4.17-dev-934-g091855f
mgmtapi.c File Reference
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "mgmtapi.h"
#include "wine/debug.h"
Include dependency graph for mgmtapi.c:

Go to the source code of this file.

Functions

 WINE_DEFAULT_DEBUG_CHANNEL (mgmtapi)
 
LPSNMP_MGR_SESSION WINAPI SnmpMgrOpen (char *hostname, char *community, int timeout, int retries)
 
BOOL WINAPI SnmpMgrTrapListen (HANDLE *available)
 

Function Documentation

◆ SnmpMgrOpen()

LPSNMP_MGR_SESSION WINAPI SnmpMgrOpen ( char *  hostname,
char *  community,
int  timeout,
int  retries 
)

Definition at line 32 of file mgmtapi.c.

33{
34 FIXME("stub: %s, %s, %d, %d\n", hostname, community, timeout, retries);
35 return NULL;
36}
char * hostname
Definition: ftp.c:88
#define FIXME(fmt,...)
Definition: precomp.h:53
#define NULL
Definition: types.h:112
Definition: dhcpd.h:248

◆ SnmpMgrTrapListen()

BOOL WINAPI SnmpMgrTrapListen ( HANDLE *  available)

Definition at line 38 of file mgmtapi.c.

39{
40 FIXME("stub: %p\n", available);
42 return FALSE;
43}
#define FALSE
Definition: types.h:117
static WCHAR available[MAX_STRING_RESOURCE_LEN]
Definition: object.c:2402
#define ERROR_CALL_NOT_IMPLEMENTED
Definition: compat.h:102
#define SetLastError(x)
Definition: compat.h:752

◆ WINE_DEFAULT_DEBUG_CHANNEL()

WINE_DEFAULT_DEBUG_CHANNEL ( mgmtapi  )