version 1.6, 2017/07/17 21:35:32
|
version 1.9, 2017/08/22 11:37:31
|
Line 6 libraryName(motif);
|
Line 6 libraryName(motif);
|
|
|
exportExternalFunctions( |
exportExternalFunctions( |
XSynchronize, |
XSynchronize, |
|
XStoreName, |
XtAddCallback, |
XtAddCallback, |
XtAppExitMainLoop, |
XtAppExitMainLoop, |
XtAppInitialize, |
XtAppInitialize, |
XtAppMainLoop, |
XtAppMainLoop, |
XtCreatePopupShell, |
XtCreatePopupShell, |
|
XtCreateManagedWidget, |
XtCreateWidget, |
XtCreateWidget, |
XtDestroyWidget, |
XtDestroyWidget, |
XtPopdown, |
XtPopdown, |
Line 70 declareSubroutine(onLoading)
|
Line 72 declareSubroutine(onLoading)
|
endSubroutine |
endSubroutine |
|
|
declareSubroutine(onClosing) |
declareSubroutine(onClosing) |
// Destruction des variables spécifiques |
// Destruction des variables spécifiques et des callbacks |
declareObject(variable); |
declareObject(variable); |
declareDaisyChain(current); |
declareDaisyChain(current); |
declareDaisyChain(next); |
declareDaisyChain(next); |
Line 78 declareSubroutine(onClosing)
|
Line 80 declareSubroutine(onClosing)
|
current = lCallbacks; |
current = lCallbacks; |
|
|
repeatWhile(not nullified(current)) |
repeatWhile(not nullified(current)) |
next = current; |
next = nextElementOfDaisyChain(current); |
nextElementOfDaisyChain(next); |
|
variable = fetchElementFromDaisyChain(current); |
variable = fetchElementFromDaisyChain(current); |
freeObject(variable); |
freeObject(variable); |
free(current); |
free(current); |