mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-11-14 20:44:54 -05:00
23 lines
No EOL
232 B
C++
23 lines
No EOL
232 B
C++
#pragma once
|
|
#ifndef _WA_LISTS_NODEPTR
|
|
#define _WA_LISTS_NODEPTR
|
|
|
|
namespace wa
|
|
{
|
|
namespace lists
|
|
{
|
|
struct node_ptr
|
|
{
|
|
node_ptr* next;
|
|
node_ptr* prev;
|
|
|
|
node_ptr() :
|
|
next(0), prev(0)
|
|
{
|
|
|
|
}
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif |