_PxInitcall()

Define a function which can be called before PxInit.

APPLIES TO

1.0.0

SYNOPSIS
_PxInitcall (void func, parms...);
ARGUMENTS
func

Function to call

parms…​

Parameters to function

DESCRIPTION

_PxInitcall defines a wrapper function func___ to call the function func(...) with the proper arguments. The wrapper function func___ will get an entry in __PxInitializeTable.

IMPLEMENTATION GUIDELINES
Before call
  • No checks necessary.

After call
  • No checks necessary.

Best Practice
  • No restrictions.

SEE ALSO
USAGE
#include "pxdef.h"

_PxInitcall(MyInitFunc);