diff options
author | David Robillard <d@drobilla.net> | 2021-02-15 08:54:07 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-02-15 08:54:07 -0500 |
commit | 1ff4f7414efdf311d85c56d76887b9fd32628014 (patch) | |
tree | 57601475cb5de77ffda388c277ee8f7ccc7cc304 /include | |
parent | fadf8abb53034ae9517de70e2f04c05b4342df38 (diff) | |
download | pugl-1ff4f7414efdf311d85c56d76887b9fd32628014.tar.gz pugl-1ff4f7414efdf311d85c56d76887b9fd32628014.tar.bz2 pugl-1ff4f7414efdf311d85c56d76887b9fd32628014.zip |
Remove deprecated enumerators
Diffstat (limited to 'include')
-rw-r--r-- | include/pugl/pugl.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/pugl/pugl.h b/include/pugl/pugl.h index 6c30d8e..e537e8c 100644 --- a/include/pugl/pugl.h +++ b/include/pugl/pugl.h @@ -190,13 +190,6 @@ typedef enum { PUGL_TIMER, ///< Timer triggered, a #PuglEventTimer PUGL_LOOP_ENTER, ///< Recursive loop entered, a #PuglEventLoopEnter PUGL_LOOP_LEAVE, ///< Recursive loop left, a #PuglEventLoopLeave - -#ifndef PUGL_DISABLE_DEPRECATED - PUGL_ENTER_NOTIFY PUGL_DEPRECATED_BY("PUGL_POINTER_IN") = PUGL_POINTER_IN, - PUGL_LEAVE_NOTIFY PUGL_DEPRECATED_BY("PUGL_POINTER_OUT") = PUGL_POINTER_OUT, - PUGL_MOTION_NOTIFY PUGL_DEPRECATED_BY("PUGL_MOTION") = PUGL_MOTION, -#endif - } PuglEventType; /// Common flags for all event types |