DefineDosDevice stub added.
This commit is contained in:
parent
edda6875ff
commit
575a1653f4
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue