This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Two dashes start a one-line comment. | |
--[[ | |
Adding two ['s and ]'s makes it a | |
multi-line comment. | |
--]] | |
---------------------------------------------------- | |
-- 1. Variables and flow control. | |
---------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <windows.h> | |
#ifndef VK_MEDIA_NEXT_TRACK | |
#define VK_MEDIA_NEXT_TRACK 0xB0 | |
#endif | |
#ifndef VK_MEDIA_PREV_TRACK | |
#define VK_MEDIA_PREV_TRACK 0xB1 | |
#endif | |
#ifndef VK_MEDIA_STOP | |
#define VK_MEDIA_STOP 0xB2 |
NewerOlder