Read-only archive of the All About Symbian forum (2001–2013) · About this archive

How run an OPO File with Loadm ?

1 replies · 1,493 views · Started 18 February 2005

You can load a OP file with LoadM. After that all the routines in this file become part of your program and can be called as if they were part of your original program.

For example, let says "TEST.OPO" contains a routine that is called "PROC TestIt:". Then this is the way to call it:

PROC LoadTestModule:
LOADM "TEST.OPO"
TestIt:
ENDP