| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2005, 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2005, 2007 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006 Jon Shier (jshier@iastate.edu) | 3 * Copyright (C) 2006 Jon Shier (jshier@iastate.edu) |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 macro(keypress) \ | 85 macro(keypress) \ |
| 86 macro(keyup) \ | 86 macro(keyup) \ |
| 87 macro(levelchange) \ | 87 macro(levelchange) \ |
| 88 macro(load) \ | 88 macro(load) \ |
| 89 macro(loading) \ | 89 macro(loading) \ |
| 90 macro(loadingdone) \ | 90 macro(loadingdone) \ |
| 91 macro(loadstart) \ | 91 macro(loadstart) \ |
| 92 macro(message) \ | 92 macro(message) \ |
| 93 macro(midimessage) \ | 93 macro(midimessage) \ |
| 94 macro(mousedown) \ | 94 macro(mousedown) \ |
| 95 macro(mouseenter) \ |
| 96 macro(mouseleave) \ |
| 95 macro(mousemove) \ | 97 macro(mousemove) \ |
| 96 macro(mouseout) \ | 98 macro(mouseout) \ |
| 97 macro(mouseover) \ | 99 macro(mouseover) \ |
| 98 macro(mouseup) \ | 100 macro(mouseup) \ |
| 99 macro(mousewheel) \ | 101 macro(mousewheel) \ |
| 100 macro(noupdate) \ | 102 macro(noupdate) \ |
| 101 macro(obsolete) \ | 103 macro(obsolete) \ |
| 102 macro(offline) \ | 104 macro(offline) \ |
| 103 macro(online) \ | 105 macro(online) \ |
| 104 macro(open) \ | 106 macro(open) \ |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 }; | 323 }; |
| 322 | 324 |
| 323 inline EventNames& eventNames() | 325 inline EventNames& eventNames() |
| 324 { | 326 { |
| 325 return threadGlobalData().eventNames(); | 327 return threadGlobalData().eventNames(); |
| 326 } | 328 } |
| 327 | 329 |
| 328 } | 330 } |
| 329 | 331 |
| 330 #endif | 332 #endif |
| OLD | NEW |