12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef _NULLSOFT_GEN_ML_MENUFUCKER_H_
- #define _NULLSOFT_GEN_ML_MENUFUCKER_H_
- #include "ml.h"
- #include "../playlist/ifc_playlist.h"
- #define MENU_MEDIAVIEW 0
- #define MENU_MLPLAYLIST 1
- #define MENU_PLAYLIST 2
- #define MENU_SONGTICKER 3
- typedef struct {
- size_t size;
- int type;
- HMENU menu;
- int nextidx;
- int maxidx;
- union {
- struct {
- HWND list;
- itemRecordListW *items;
- } mediaview;
- struct {
- HWND list;
- ifc_playlist * pl;
- } mlplaylist;
- } extinf;
- } menufucker_t;
- #endif
|