Re: find_global failing

2004-01-13 Thread Leopold Toetsch
Jonathan Worthington <[EMAIL PROTECTED]> wrote: > Thanks, that works great. I now have a .pbc with loadlibs and dlfuncs for > pretty much the entire Win32 API. Fine. > ... The next thing I want to look at is > constants. At first I thought I could do something like:- > .constant MB_YESNOCANCEL

Re: find_global failing

2004-01-13 Thread Jonathan Worthington
- Original Message - From: "Leopold Toetsch" <[EMAIL PROTECTED]> To: "Jonathan Worthington" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, January 13, 2004 9:13 AM Subject: Re: find_global failing > Jonathan Worthington <[EMAIL

Re: find_global failing

2004-01-13 Thread Leopold Toetsch
Jonathan Worthington <[EMAIL PROTECTED]> wrote: > Hi, > I currently have a file named win32.pasm containing the following:- > saveall > loadlib P1, 'user32' > dlfunc P2, P1, 'MessageBoxA', 'llttl' > store_global 'MessageBox', P2 > # MANY MORE LINES LIKE THIS > restoreall > I compile that file to

find_global failing

2004-01-12 Thread Jonathan Worthington
Hi, I currently have a file named win32.pasm containing the following:- saveall loadlib P1, 'user32' dlfunc P2, P1, 'MessageBoxA', 'llttl' store_global 'MessageBox', P2 # MANY MORE LINES LIKE THIS restoreall I compile that file to a .pbc file, which works out OK. In then have an imc file that s