This documenta- tion describes the current state of development.
Note that interfaces and functionality may still change.

Prokee Modules:
  A
  B
  C
  D
  E
  F
  G
  I
  L
  M
  N
  O
  P
  R
  S
  T
  U
  W

     open all    |    close all

GUI Elements:
  B
  C
  I
  M
  P
  R
  S
  T

     open all    |    close all

GUI Interactions:
  B
  F
  H
  S

     open all    |    close all

GUI Layouts:
  L

     open all    |    close all

Games/Demos:
  M

     open all    |    close all

Third Party Libraries:
  P
  F
  Z

     open all    |    close all

Information about this Website / Informationen zu dieser Webseite:
In case of any questions, or comments, please feel free to contact me via email at apoll500@gmail.com.

Module baseman [Version: v01]

This documentation describes the Prokee module interface.


Functions:
baseman_set_printer
void baseman_set_printer(int(*print)(const char *str))
baseman_filecopied
void baseman_filecopied(void *cc,const char *targetpath,const char *sourcepath,size_t bytes)

Static Methods:
main
int baseman::main(int argc,char **argv)

Motivation

Ein Programm zur Modularisierung von (Web-)Projekten.

Weitere Informationen zu baseman finden Sie unter: http://www.andreaspollhammer.com/baseman/.


Functions

   baseman_set_printer


Setzt die Funktion, die für die Ausgabe aufgerufen werden soll.

Solange keine Funktion zugeordnet wurde, oder NULL als Funktionspointer zugewiesen wurde, erfolgte die Ausgabe an stdout.

Signature:
void baseman_set_printer(int(*print)(const char *str))

Parameters:
Type Name Direction Description
int(*print)
(
   const char *str
)
[IN] Die Funktion, die für die Ausgabe aufgerufen werden soll, oder NULL, falls die Ausgabe an stdout erfolgen soll.
Parameter
str: Der null-terminierte String, der ausgegeben werden soll. Die Funktion erhält einen UTF-8 String.
Return value
Die Funktion soll die Anzahl Zeichen zurückgeben, die ausgegeben wurden.
Der Rückgabewert wird jedoch von baseman nicht verwendet.

   baseman_filecopied


...

...

Signature:
void baseman_filecopied(void *cc,const char *targetpath,const char *sourcepath,size_t bytes)

Parameters:
Type Name Direction Description
void *cc[IN]
const char *targetpath[IN]
const char *sourcepath[IN]
size_t bytes


Static Methods

   main


Runs baseman as if it would be called from the command-line.

See baseman documentation.

Signature:
int baseman::main(int argc,char **argv)

Parameters:
Type Name Direction Description
int argcDie Anzahl Commandline-Parameter.
char **argvDie Commandline-Parameter mit denen baseman ausgeführt werden soll.

Return value:
immer EXIT_SUCCESS (0)


Copyright © 2017 - 2019 by Andreas Pollhammer