목록Programming (3)
Creative Motive
Windows 용 더블 링크드 리스트 구조체A LIST_ENTRY structure describes an entry in a doubly linked list or serves as the header for such a list.SyntaxC++typedef struct _LIST_ENTRY { struct _LIST_ENTRY *Flink; struct _LIST_ENTRY *Blink; } LIST_ENTRY, *PLIST_ENTRY; MembersFlinkFor a LIST_ENTRY structure that serves as a list entry, the Flink member points to the next entry in the list or to the list header if t..
[출처] Linux Cross Reference - list.h 1 #ifndef _LINUX_LIST_H 2 #define _LINUX_LIST_H 3 4 #include 5 #include 6 #include 7 #include 8 9 /* 10 * Simple doubly linked list implementation. 11 * 12 * Some of the internal functions ("__xxx") are useful when 13 * manipulating whole lists rather than single entries, as 14 * sometimes we already know the next/prev entries and we can 15 * generate better c..
Visual C++ 6.0 Platform SDK February 2003 DirectX 9.0 SDK Update (Summer 2004) Visual Studio 6.0 Service Pack 5 (Processor Pack 을 깔기 위해 필요) Visual Studio 6.0 Service Pack 6 Processor Pack (인텔의 MMX 함수를 사용하기 위해 꼭 설치. 코덱 등의 작업에 필수) Microsoft Visual C++ 6.0 배포 (http://activex.microsoft.com/controls/vc/mfc42.cab) Visual C++ 7.1 (VS 2003) Microsoft Visual Studio .NET 2003 서비스 팩 1 (http://www.microsoft..