summaryrefslogtreecommitdiff
path: root/arm9/source/main.h
blob: 14aa0dda867a5a2fd01e9a6537187229c808b712 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <nds.h>

#ifndef MAIN_H_
    #define MAIN_H_

    void receive_keyboard_byte(u8 byte);
    bool is_keyboard_open(void);
    void open_keyboard(void);
    void close_keyboard(void);
    void change_layout(void);

#endif