Commit 575a1653 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

DefineDosDevice stub added.

parent edda6875
......@@ -1779,3 +1779,9 @@ BOOL32 WINAPI SystemTimeToFileTime( const SYSTEMTIME *syst, LPFILETIME ft )
#endif
return TRUE;
}
BOOL32 WINAPI DefineDosDevice32A(DWORD flags,LPCSTR devname,LPCSTR targetpath) {
FIXME(dosfs,"(0x%08lx,%s,%s),stub!\n",flags,devname,targetpath);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
......@@ -196,7 +196,7 @@ type win32
# FIXME
#181 register DebugBreak() DebugBreak
181 stub DebugBreak
182 stub DefineDosDeviceA
182 stdcall DefineDosDeviceA(long str str) DefineDosDevice32A
183 stub DefineDosDeviceW
184 stdcall DeleteAtom(long) DeleteAtom32
185 stdcall DeleteCriticalSection(ptr) DeleteCriticalSection
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment