Skip to content

Instantly share code, notes, and snippets.

@madsunrise
Created June 18, 2018 09:51
Show Gist options
  • Save madsunrise/2a6212522ce564040c30a89df67f463c to your computer and use it in GitHub Desktop.
Save madsunrise/2a6212522ce564040c30a89df67f463c to your computer and use it in GitHub Desktop.
interface IKKMRemoteDriver {
void printString(in String string);
void setTime(long time);
long getTime();
KKMStatus getCurrentStatus();
ReceiptResult printSellReceipt(in PrintableReceipt receipt);
int getTableIntegerField(int table, int row, int field);
void writeTableIntegerField(int table, int row, int field, int value);
String getTableStringField(int table, int row, int field);
void writeTableStringField(int table, int row, int field, in String value);
byte[] getTableBinaryField(int table, int row, int field);
void writeTableBinaryField(int table, int row, int field, in byte[] value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment