summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2015-05-06 01:56:39 -0300
committerGravatar Yuri Kunde Schlesner2015-05-06 23:45:04 -0300
commit1fee769aa0429a620dc93b351168396a9ead45c9 (patch)
treebd280ec51cb3fc90759391c89d0c543d2bf3f7f7 /src
parentMerge pull request #720 from yuriks/svc-cleanup (diff)
downloadyuzu-1fee769aa0429a620dc93b351168396a9ead45c9.tar.gz
yuzu-1fee769aa0429a620dc93b351168396a9ead45c9.tar.xz
yuzu-1fee769aa0429a620dc93b351168396a9ead45c9.zip
Common: Remove unused enums
Diffstat (limited to '')
-rw-r--r--src/common/common.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/common/common.h b/src/common/common.h
index f7d0f55c5..d11e57b1e 100644
--- a/src/common/common.h
+++ b/src/common/common.h
@@ -100,21 +100,4 @@ private:
100# define _M_SSE 0x402 100# define _M_SSE 0x402
101#endif 101#endif
102 102
103// Host communication.
104enum HOST_COMM
105{
106 // Begin at 10 in case there is already messages with wParam = 0, 1, 2 and so on
107 WM_USER_STOP = 10,
108 WM_USER_CREATE,
109 WM_USER_SETCURSOR,
110};
111
112// Used for notification on emulation state
113enum EMUSTATE_CHANGE
114{
115 EMUSTATE_CHANGE_PLAY = 1,
116 EMUSTATE_CHANGE_PAUSE,
117 EMUSTATE_CHANGE_STOP
118};
119
120#include "swap.h" 103#include "swap.h"