comparison Scan/SonyOA-S3400/scan_loop.h @ 341:66eccdd9ced5

Code cleanup - Changing header file ifndef define to pragma once's - Removed duplicate output_com.h's
author Jacob Alexander <haata@kiibohd.com>
date Sun, 14 Jun 2015 13:56:56 -0700
parents 8dab4014c398
children
comparison
equal deleted inserted replaced
340:e8841d3c6db5 341:66eccdd9ced5
1 /* Copyright (C) 2012,2014 by Jacob Alexander 1 /* Copyright (C) 2012,2014-2015 by Jacob Alexander
2 * 2 *
3 * Permission is hereby granted, free of charge, to any person obtaining a copy 3 * Permission is hereby granted, free of charge, to any person obtaining a copy
4 * of this software and associated documentation files (the "Software"), to deal 4 * of this software and associated documentation files (the "Software"), to deal
5 * in the Software without restriction, including without limitation the rights 5 * in the Software without restriction, including without limitation the rights
6 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 6 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 16 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 17 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 18 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19 * THE SOFTWARE. 19 * THE SOFTWARE.
20 */ 20 */
21
22 #ifndef __SCAN_LOOP_H
23 #define __SCAN_LOOP_H
24 21
25 // ----- Includes ----- 22 // ----- Includes -----
26 23
27 // Compiler Includes 24 // Compiler Includes
28 #include <stdint.h> 25 #include <stdint.h>
60 void Scan_finishedWithUSBBuffer( uint8_t sentKeys ); 57 void Scan_finishedWithUSBBuffer( uint8_t sentKeys );
61 void Scan_lockKeyboard( void ); 58 void Scan_lockKeyboard( void );
62 void Scan_unlockKeyboard( void ); 59 void Scan_unlockKeyboard( void );
63 void Scan_resetKeyboard( void ); 60 void Scan_resetKeyboard( void );
64 61
65
66 #endif // __SCAN_LOOP_H
67