@@ -158,6 +158,31 @@ BOOL WINAPI MoveFileTransactedW(const WCHAR *source, const WCHAR *dest, LPPROGRE
158
158
return FALSE;
159
159
}
160
160
161
+ /*************************************************************************
162
+ * CreateFileTransactedA (KERNEL32.@)
163
+ */
164
+ HANDLE WINAPI DECLSPEC_HOTPATCH CreateFileTransactedA ( LPCSTR name , DWORD access , DWORD sharing ,
165
+ LPSECURITY_ATTRIBUTES sa , DWORD creation ,
166
+ DWORD attributes , HANDLE template ,
167
+ HANDLE transaction , PUSHORT version ,
168
+ PVOID param )
169
+ {
170
+ FIXME ("(%s %lx %lx %p %lx %lx %p %p %p %p): semi-stub\n" , debugstr_a (name ), access , sharing , sa , creation , attributes , template , transaction , version , param );
171
+ return CreateFileA (name , access , sharing , sa , creation , attributes , template );
172
+ }
173
+
174
+ /*************************************************************************
175
+ * CreateFileTransactedW (KERNEL32.@)
176
+ */
177
+ HANDLE WINAPI DECLSPEC_HOTPATCH CreateFileTransactedW ( LPCWSTR name , DWORD access , DWORD sharing ,
178
+ LPSECURITY_ATTRIBUTES sa , DWORD creation ,
179
+ DWORD attributes , HANDLE template , HANDLE transaction ,
180
+ PUSHORT version , PVOID param )
181
+ {
182
+ FIXME ("(%s %lx %lx %p %lx %lx %p %p %p %p): semi-stub\n" , debugstr_w (name ), access , sharing , sa , creation , attributes , template , transaction , version , param );
183
+ return CreateFileW (name , access , sharing , sa , creation , attributes , template );
184
+ }
185
+
161
186
/**************************************************************************
162
187
* MoveFileWithProgressA (KERNEL32.@)
163
188
*/
0 commit comments