[Prev] [Next] [Top] [Bottom] [Contents] (112 out of 193)

SaRegisterObjImp

Registers an object implementation function for a FUNCTION object.

Synopsis

#include "WorkingDialog.h"

typedef int (*SaObjectImpl)(pSgeWorkCallData);

void SaRegisterObjImp(char* name, SaObjectImpl func);

Arguments

name
A string specifying the name of the object implementation function. This must be the same as the name of the FUNCTION object as defined in the Object Editor.
func
A pointer to an object implementation function which must be of the type, SaObjectImpl, as declared above.

Return Values

None.

Description

Registers an object implementation function for a FUNCTION object. The name must match the name of the FUNCTION object as defined in the Object Editor. Use the SaReq... function set of functions to implement the function.

Example

typedef int (*SaObjectImpl)(pSgeWorkCallData);
extern SaObjectImpl CreditCheck;
SaRegisterObjectImp("CreditCheck", CreditCheck);

See Also


[Prev] [Next] [Top] [Bottom] [Contents] (112 out of 193)