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

Go to the source code of this file.

Functions

 WINE_DEFAULT_DEBUG_CHANNEL (mprapi)
 
DWORD APIENTRY MprAdminGetErrorString (DWORD mprerror, LPWSTR *localstr)
 
BOOL APIENTRY MprAdminIsServiceRunning (LPWSTR server)
 
DWORD APIENTRY MprConfigServerConnect (LPWSTR server_name, HANDLE *hmprconfig)
 

Function Documentation

◆ MprAdminGetErrorString()

DWORD APIENTRY MprAdminGetErrorString ( DWORD  mprerror,
LPWSTR *  localstr 
)

Definition at line 46 of file mprapi.c.

47{
48 FIXME("(0x%lx/%lu, %p): stub!\n", mprerror, mprerror, localstr);
49
50 *localstr = NULL;
52}
#define FIXME(fmt,...)
Definition: precomp.h:53
#define NULL
Definition: types.h:112
#define ERROR_MR_MID_NOT_FOUND
Definition: winerror.h:442

◆ MprAdminIsServiceRunning()

BOOL APIENTRY MprAdminIsServiceRunning ( LPWSTR  server)

Definition at line 57 of file mprapi.c.

58{
59 FIXME("(%s): stub!\n", debugstr_w(server));
60
61 return FALSE;
62}
#define FALSE
Definition: types.h:117
#define debugstr_w
Definition: kernel32.h:32
static rfbScreenInfoPtr server
Definition: vnc.c:74

◆ MprConfigServerConnect()

DWORD APIENTRY MprConfigServerConnect ( LPWSTR  server_name,
HANDLE *  hmprconfig 
)

Definition at line 67 of file mprapi.c.

68{
69 FIXME("server_name %s, hmprconfig %p stub.\n", debugstr_w(server_name), hmprconfig);
70
71 *hmprconfig = NULL;
72
74}
#define ERROR_NOT_SUPPORTED
Definition: compat.h:100
char * server_name
Definition: widl.c:128

◆ WINE_DEFAULT_DEBUG_CHANNEL()

WINE_DEFAULT_DEBUG_CHANNEL ( mprapi  )