diff --git a/src/lib/key-functions--private.h b/src/lib/key-functions--private.h new file mode 100644 index 0000000..d1988e5 --- /dev/null +++ b/src/lib/key-functions--private.h @@ -0,0 +1,23 @@ +/* ---------------------------------------------------------------------------- + * key functions: private + * + * Things to be used only by keyfunctions. Exported any layouts would like to + * use these functions to help define their own. + * ---------------------------------------------------------------------------- + * Copyright (c) 2012 Ben Blazak + * Released under The MIT License (MIT) (see "license.md") + * Project located at + * ------------------------------------------------------------------------- */ + + +#ifndef KEY_FUNCTIONS_h_PRIVATE + #define KEY_FUNCTIONS_h_PRIVATE + + void _press_release(uint8_t keycode, bool pressed); + void _layer_set_current( + uint8_t value, + uint8_t * current_layer, + uint8_t * current_layers_[KB_ROWS][KB_COLUMNS] ); + +#endif +