spiegel-keyman/mac/mcompile/mcompile.cpp

23 lines
612 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include <stdio.h>
#include <wchar.h>
#include "mcompile.h"
//-------------------------------
int main () {
std::cout << "Hier ist main von mcompile-mac.cpp...\n";
std::u16string character;
for (int i=0; i<8; i++) {
character = get_character_From_Keycode(24,14,i ); // all Shiftstates for ´` + e
//wprintf( L" ` + e for SHIFTSTATE %i -> ...\n", i, wstring_from_u16string(character););
}
printf("\n................................ END ..............................\n");
return 0;
}
//--------------------------
void fun2() { std::cout << "Hier ist fun2 von mcompile.cpp ...\n";}