From 335570f34fdf30d51614939d12e4545282580162 Mon Sep 17 00:00:00 2001 From: Chris Teubert Date: Wed, 8 Apr 2015 09:26:56 -0700 Subject: [PATCH] Updated C User Guide --- C/User Guide (C).txt | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/C/User Guide (C).txt b/C/User Guide (C).txt index 60e4bf0..da34ea9 100644 --- a/C/User Guide (C).txt +++ b/C/User Guide (C).txt @@ -155,6 +155,13 @@ BASIC FUNCTIONS char DREFArray[][100] = {"sim/cockpit/switches/gear_handle_status"}; requestDREF(theSocket, IP, 49009, DREFArray, strlen(DREFArray[0]),1); + 10. sendTEXT write some text to the screen. + INPUT: + outSocket (xpcSocket): Socket to use to send the command + message (char*): The string to be wrote to the screen + x (int): The x position where the text will be written. Set to -1 to use default position. + y (int): The y position where the text will be written. Set to -1 to use default position. + ----------------------------------- ADVANCED FUNCTIONS (These are mostly used by the xpcPlugin to read requests) 1. sendUDP @@ -179,9 +186,6 @@ PLANNED FUNCTIONS 5. parseWYPT 6. readWYPT 7. selectDATA - 8. sendTEXT - 9. readTEXT - 10. parseTEXT ----------------------------------- CONTACT