IOwprintf

Top  Previous  Next

printf in the protocol window.

With IOwprintf an issue is carried out in the protocol window by Moskito. The functionality corresponds to that of a call from printf in C. Therefore, every call needs a format string and a variable number of parametres.

Parametre

pipes (PIOPIPES) [IN]

The trading gives the issue canal.

fmt (char *) [IN]

As with printf the issue format is determined here. Every occurence of % is substituted. %% proves a % sign. %d requires an upright value as a parametre. %s uses the next string as a parametre. All the other details please a description of C take.

... (Types depend on %...) [IN]

Here follows a list of parametres of different types.

Result

(int) [OUT]

Number of the spent signs exclusively of the final zero character

Declaration

#include "ausgabe.h"

 

int DLLENTRY IOwprintf (

PIOPIPES pipes,

char * fmt,

...

);