The Win32 API has a separate link . I do not think there are other data structures in the API.
But a singly linked list is intended for inter-threaded queues, and not for general algorithmic data processing. It is better to use your own general purpose data structures that will not be so specialized (for example, C ++ STL data structures and their associated algorithms are much richer than anything in the system API).
source
share