35 lines
880 B
Plaintext
35 lines
880 B
Plaintext
#+ Dummy functions for FJS BDL 3.x compatibility.
|
|
|
|
#+ Miscellaneous initializations.
|
|
#+
|
|
#+ This is a dummy-function for FJS BDL 3.x compatibility.
|
|
FUNCTION fgl_init4js()
|
|
RETURN
|
|
END FUNCTION
|
|
|
|
#+ Selects a ressource file.
|
|
#+ @param filename Resource file.
|
|
#+
|
|
#+ This is a dummy-function for FJS BDL 3.x compatibility.
|
|
FUNCTION fgl_resource(filename)
|
|
DEFINE filename String
|
|
END FUNCTION
|
|
|
|
#+ Get the value of a variable defined at the ui-client.
|
|
#+ @param name Remote variable name.
|
|
#+
|
|
#+ This is a dummy-function for FJS BDL 3.x compatibility.
|
|
FUNCTION fgl_uiRetrieve(name)
|
|
DEFINE name String
|
|
RETURN NULL
|
|
END FUNCTION
|
|
|
|
#+ Get the value of a variable defined at the ui-client.
|
|
#+ @param name Remote variable name.
|
|
#+
|
|
#+ This is a dummy-function for FJS BDL 3.x compatibility.
|
|
FUNCTION fgl_uiSendCommand(n)
|
|
DEFINE n CHAR(256)
|
|
END FUNCTION
|
|
|