mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 13:05:46 -04:00
Initial community commit
This commit is contained in:
18
Src/Wasabi/api/core/buttons.h
Normal file
18
Src/Wasabi/api/core/buttons.h
Normal file
@ -0,0 +1,18 @@
|
||||
#ifndef _BUTTONS_H
|
||||
#define _BUTTONS_H
|
||||
|
||||
// codes for
|
||||
|
||||
namespace UserButton {
|
||||
enum {
|
||||
PREV=0,
|
||||
PLAY,
|
||||
PAUSE,
|
||||
STOP,
|
||||
NEXT,
|
||||
};
|
||||
const int first = PREV;
|
||||
const int last = NEXT;
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user