Subversion Repositories Kolibri OS

Rev

Rev 914 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
890 serge 1
.file   "export.asm"
2
	.intel_syntax
3
 
4
 
5
	.section .drectve
914 serge 6
#       .ascii " -export:CreateImage"          # cdecl
892 serge 7
        .ascii " -export:LoadFile"             # stdcall
890 serge 8
 
892 serge 9
        .ascii " -export:Kmalloc"              # eax               FIXME
10
        .ascii " -export:Kfree"                # eax               FIXME
890 serge 11
 
12
        .ascii " -export:UserAlloc"            # stdcall
13
        .ascii " -export:UserFree"             # stdcall
14
 
892 serge 15
        .ascii " -export:GetPgAddr"            # eax               FIXME
890 serge 16
        .ascii " -export:MapIoMem"             # stdcall
17
        .ascii " -export:CreateRingBuffer"     # stdcall
892 serge 18
        .ascii " -export:CommitPages"          # eax, ebx, ecx     FIXME
19
        .ascii " -export:UnmapPages"           # eax, ecx          FIXME
2971 Serge 20
 
892 serge 21
        .ascii " -export:CreateObject"         # eax, ebx          FIXME
22
        .ascii " -export:DestroyObject"        # eax
890 serge 23
 
24
        .ascii " -export:RegService"           # stdcall
25
        .ascii " -export:SysMsgBoardStr"       #
26
        .ascii " -export:SetScreen"            #
27
 
28
        .ascii " -export:PciApi"               #
29
        .ascii " -export:PciRead8"             # stdcall
30
        .ascii " -export:PciRead16"            # stdcall
31
        .ascii " -export:PciRead32"            # stdcall
32
        .ascii " -export:PciWrite8"            # stdcall
33
        .ascii " -export:PciWrite16"           # stdcall
34
        .ascii " -export:PciWrite32"           # stdcall
35
 
36
        .ascii " -export:SelectHwCursor"       # stdcall
37
        .ascii " -export:SetHwCursor"          # stdcall
38
        .ascii " -export:HwCursorRestore"      #
39
        .ascii " -export:HwCursorCreate"       #
40
 
2971 Serge 41
        .ascii " -export:create_window"        # cdecl
42
        .ascii " -export:show_window"          # cdecl
43
        .ascii " -export:get_event"            # cdecl
44
        .ascii " -export:def_window_proc"      # cdecl
890 serge 45