mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
317af320cf
this .h file, but only those. Necessary fixes to a lot of .c files, started optimizing "windows.h" away from some of them. Moved GetCurrentTask prototype to wine/winbase16.h.
19 lines
455 B
C
19 lines
455 B
C
/*
|
|
* RASAPI32
|
|
*
|
|
* Copyright 1998 Marcus Meissner
|
|
*/
|
|
|
|
#include "wintypes.h"
|
|
#include "ras.h"
|
|
#include "debug.h"
|
|
|
|
/**************************************************************************
|
|
* RasEnumConnections32A [RASAPI32.544]
|
|
*/
|
|
DWORD WINAPI RasEnumConnections32A( LPRASCONN32A rca, LPDWORD x, LPDWORD y) {
|
|
/* Remote Access Service stuff is done by underlying OS anyway */
|
|
FIXME(ras,"(%p,%p,%p),stub!\n",rca,x,y);
|
|
return 0;
|
|
}
|