[KERNEL32] Improve the FILE header section. Brought to you by Adam Stachowicz. CORE...
[reactos.git] / reactos / dll / win32 / kernel32 / client / amd64 / fiber.S
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS system libraries
4 * FILE: dll/win32/kernel32/client/amd64/fiber.S
5 * PURPOSE: Fiber context switch code for the amd64 architecture
6 * PROGRAMMER:
7 */
8
9 #include <asm.inc>
10
11 .code64
12
13 PUBLIC BaseFiberStartup
14 FUNC BaseFiberStartup
15 .ENDPROLOG
16 UNIMPLEMENTED BaseFiberStartup
17 /* FIXME: TODO */
18 ret
19
20 ENDFUNC
21
22
23 PUBLIC SwitchToFiber
24
25 FUNC SwitchToFiber
26 .ENDPROLOG
27 UNIMPLEMENTED BaseFiberStartup
28 /* FIXME: TODO */
29 ret
30 ENDFUNC
31
32 END