Subversion Repositories Kolibri OS

Rev

Rev 2146 | Rev 2288 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2146 Rev 2154
Line 7... Line 7...
7
    end if
7
    end if
8
  \}
8
  \}
9
}
9
}
10
 
10
 
Line 11... Line 11...
11
$Revision: 2146 $
11
$Revision: 2154 $
Line 12... Line 12...
12
 
12
 
13
 
13
 
14
; structure definition helper
14
; structure definition helper
Line 126... Line 126...
126
    mov eax, [head+LHEAD.prev]
126
    mov eax, [head+LHEAD.prev]
127
    __list_add new, eax, head
127
    __list_add new, eax, head
128
}
128
}
129
129
 
Line -... Line 130...
-
 
130
macro list_del entry
-
 
131
{
-
 
132
    mov edx, [entry+list_fd]
-
 
133
    mov ecx, [entry+list_bk]
-
 
134
    mov [edx+list_bk], ecx
-
 
135
    mov [ecx+list_fd], edx
-
 
136
}
-
 
137