#include "pxt.h"

namespace Keyboard {

//%
void promptForText(int maxLength, bool numberOnly) {
}

//%
void cancelTextPrompt() {
}

//%
char* getTextPromptString() {
    return NULL;
}

//%
char* getLocalizedInstructions() {
    return NULL;
}

//%
int getTextPromptSelectionStart() {
    return 0;
}

//%
int getTextPromptSelectionEnd() {
    return 0;
}

//%
bool isSystemKeyboardSupported() {
    return false;
}
}