Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: foo_run (Read 596587 times) previous topic - next topic
0 Members and 2 Guests are viewing this topic.

foo_run 0.3.7

Reply #250
you are welcome.

greets

foo_run 0.3.7

Reply #251
what would be the command line to open the NFO file thats in the folder the mp3 is in?

/music/artist-album/nowplaying.mp3
/music/artist-album/information.nfo

i want to open that information.nfo... so like a command to open *.nfo thats in the same folder as the mp3 thats playing....

Tnx

:EDIT: i now made this

Code: [Select]
"$lower($substr(%_path%,0,$strrchr(%_path%,'\'))00-%directoryname%.nfo)"


it will reflect the complete path of the folder and then make 00-foldername.nfo since most of my albums are tagged that way ... but i'd rather have it that it just looks opens any nfo file thats in the folder...

foo_run 0.3.7

Reply #252
@Light: did you try $directory_path(%path%)?

HTH.

Alessandro

foo_run 0.3.7

Reply #253
@Light: did you try $directory_path(%path%)?

HTH.

Alessandro



yeah, that makes the code a bit simpler...

Code: [Select]
"$lower($directory_path(%path%)\00-%directoryname%.nfo)"


but still its not the ideal solution, since not all nfo's are tagged like that...

foo_run 0.3.7

Reply #254
but still its not the ideal solution, since not all nfo's are tagged like that...
Yep, apologies: didn't read carefully.

Not sure though: what do you open the NFO with? If the program you use supports wildcards at command line, it should work... otherwise I don't think you can do what you want using foobar2000 scripting language exclusively (but then again I'm not an expert ).

Alessandro

foo_run 0.3.7

Reply #255

@Light: did you try $directory_path(%path%)?

HTH.

Alessandro



yeah, that makes the code a bit simpler...

Code: [Select]
"$lower($directory_path(%path%)\00-%directoryname%.nfo)"


but still its not the ideal solution, since not all nfo's are tagged like that...


just try this to see if it works with notepad :

"C:\WINDOWS\notepad.exe" "$lower($directory_path(%path%)\00-%directoryname%.nfo)"

btw, try with replacing the program path that u want to use for .nfo files

foo_run 0.3.7

Reply #256
Pardon my ignorance but why is $lower needed? Windows file names are not case-sensitive right?

foo_run 0.3.7

Reply #257
Yeah, lower is not needed, its just to make it look more tidy, no function at all...

Well, the code works, cause if i do start => run => c:\mp3\mymp3folder\00-path etc, it opens the nfo in the standard nfo viewer (damn nfo viewer) so it works, but just on a couple of dirs cause not all nfo's are exactly in the same format... so i just want it to open the first nfo it can find in the directory.

Good thinking though, maybe the program opening it can find it, or maybe a bat file or something... I'll try later

EDIT

i got the solution:

make a batfile, called opennfo.bat and put it in c:\windows\ , put this in it: FOR %%A in (%1*.nfo) DO %%A

then in foo_run, use this command: opennfo.bat "$directory_path(%path%)\"

that simple actually....

foo_run 0.3.7

Reply #258
Hello,

I just want to play a radio stream (___.ogg.m3u).

I tried as path:
Code: [Select]
C:\Dokumente und Einstellungen\UIername\Eigene Dateien\Eigene Musik\tilos_high.ogg.m3u


but it didn´t work. It´s very simple I guess but I don´t know how. Thanks for you help and thanks to Florian for Mp3Tag and foo_run!!!

foo_run 0.3.7

Reply #259
Yes, simple. Put the path in quotation marks: "path"


foo_run 0.3.7

Reply #261
Just stumbled on this plugin the other day. Really great to have, i had to do a lot of trial and error with other codes to get it to work with some sites but it's a great plugin thanks.

 

foo_run 0.3.7

Reply #262
I'm on vista x64 and when using latest foobar version I can't get the following working:
"C:\Program Files (x86)\PROGRAMNAME"

If I place for example a program called albumart.exe in the following folder, C:\Program Files (x86)\foobar2000\utils\AlbumArt\. And I use the follwing string in foo_run, "C:\Program Files (x86)\foobar2000\utils\AlbumArt\AlbumArt.exe". It does not work. This happens with every progaram!

When I put the same file in de follwing folder, E:\AlbumArt\, and use the follwing string, "E:\AlbumArt\AlbumArt.exe". It works!

Am I doing something wrong? Or does this happen to others too?


foo_run 0.3.7

Reply #264
...
Try quoting the parentheses with single quotes:
Code: [Select]
"C:\Program Files '('x86')'\appfolder\app.exe" -pram
Thank you very much for the impressive quick reply! Quoting the parentheses did the trick.

foo_run 0.3.7

Reply #265
(Hi there... first time poster here)

Does anyone know how I could search http://www.songmeanings.net/ using foo_run?  I've been using the component successfully for a while now and I have buttons set to run seperate sites for various things (Wikipedia, last.fm, allmusic, etc.).  I did have this site set so that I could search both artist lyrics and song lyrics but suddenly I can't do it because they've changed their search method.  I think it is because it now uses "post" method instead of "get" for searches but I could be completely wrong.  I spent a while trying to work it out and the closest I could get was
Code: [Select]
http://www.songmeanings.net/search/?scope=artists&search_value=$replace(%artist%, ,+)&command=go
which comes up with some sort of error.

Would it be possible for someone to explain a quick and simple method of working out web searches for use in foo_run?

foo_run 0.3.7

Reply #266
Try this one:
Code: [Select]
http://www.songmeanings.net/search/1/?scope=artists&search_value=$replace(%artist%, ,+)&command=go


You can always use Google too:
Code: [Select]
http://www.google.com/search?q=$replace(%artist%, ,+)+$replace(%title%, ,+)+site:www.songmeanings.net

foo_run 0.3.7

Reply #267
The top one works great.  Thanks!

foo_run 0.3.7

Reply #268
This component does not work with the latest foobar beta, can you recompiled it, please, original author?

foo_run 0.3.7

Reply #269
Using the following without issue:

foobar 9.6 beta 2
foo_run 3.4

terry

foo_run 0.3.7

Reply #270
I'm running 0.9.6 beta 3 and foo run version 0.3.4 with no issues.

foo_run 0.3.7

Reply #271
Thanks both of you, I thought I was running the latest version.

foo_run 0.3.7

Reply #272
He's not working for me either
I've got Windows XP SP2

foo_run 0.3.7

Reply #273
It works for me after updating, please try updating http://mp3tag.de/en/fb2k.html . If it still doesn't work I think you have some other problems.

foo_run 0.3.7

Reply #274
it's still not working
i've got this message error
Code: [Select]
Illegal operation:
Code: C0000005h, flags: 00000000h, address: 01592DACh
Access violation, operation: read, address: 00000000h
Call path:
entry=>user_interface::init
Code bytes (01592DACh):
01592D6Ch:  C4 0C 85 C0 74 1A 6A 10 68 94 2E 5B 01 FF 75 14
01592D7Ch:  E8 34 8F 00 00 83 C4 0C 85 C0 74 04 32 C0 EB 17
01592D8Ch:  8B 4D 08 8B 01 6A FF 68 38 2A 5B 01 FF 50 08 8B
01592D9Ch:  45 0C 83 20 00 B0 01 5D C2 10 00 A1 68 82 5B 01
01592DACh:  8B 08 8B 01 FF 20 6A 08 E8 E4 A6 00 00 59 85 C0
01592DBCh:  74 0F 8B 4C 24 04 C7 00 68 2A 5B 01 89 48 04 EB
01592DCCh:  02 33 C0 C2 04 00 8B 44 24 04 56 57 BE 4C 26 5B
01592DDCh:  01 8B F8 A5 A5 A5 A5 5F 5E C2 04 00 32 C0 C3 8B
Stack (0012AA78h):
0012AA58h:  A395F7D8 A395F170 80566A6C 00000001
0012AA68h:  A395F3DC 0000003B 00000083 0075C790
0012AA78h:  0185E220 6E4F6FB4 0012AB44 0012ABF0
0012AA88h:  015D48E8 00000000 00000000 00000010
0012AA98h:  018DB994 00000000 00000000 00000000
0012AAA8h:  018D367C 0193B320 0000001C 0000001C
0012AAB8h:  00000017 018D367C 0193B2C8 0000001C
0012AAC8h:  0000001C 0000000B 00000000 0012ABF0
0012AAD8h:  0012AAF0 0159D4BC 00000004 0187C259
0012AAE8h:  0012AB74 018C2C88 00000001 0185E636
0012AAF8h:  015D482F 01F5BF6C 0012ABF0 00000001
0012AB08h:  00000001 6E4F6E24 01F5BF5C 00000000
0012AB18h:  0012AC54 01F5BDD0 8007000E 0012AB90
0012AB28h:  015B754C 00000000 00000001 015D48E8
0012AB38h:  00000012 003CBB68 018DB994 00000000
0012AB48h:  00000000 00000000 75D1DD87 4AAC9E48
0012AB58h:  25AAA98A BD5AC0D6 018D367C 0193D270
0012AB68h:  0000001C 0000001C 0000000B 0012AC44
0012AB78h:  018C4030 00000005 01863C07 01F5BF5C
0012AB88h:  01F5BF6C 0012ABF0 00000001 6E4F6EAC
Registers:
EAX: 00000000, EBX: 00000000, ECX: 015D48E8, EDX: 015B2A90
ESI: 0012AA9C, EDI: 0012AA9C, EBP: 015D48E8, ESP: 0012AA78
Crash location: "foo_run", loaded at 01590000h - 015BE000h

Loaded modules:
foobar2000                       loaded at 00400000h - 00538000h
ntdll                            loaded at 7C910000h - 7C9C7000h
kernel32                         loaded at 7C800000h - 7C905000h
COMCTL32                         loaded at 77390000h - 77493000h
msvcrt                           loaded at 77BE0000h - 77C38000h
ADVAPI32                         loaded at 77DA0000h - 77E4F000h
RPCRT4                           loaded at 77E50000h - 77EE1000h
GDI32                            loaded at 77EF0000h - 77F37000h
USER32                           loaded at 7E390000h - 7E421000h
SHLWAPI                          loaded at 77F40000h - 77FB6000h
SHELL32                          loaded at 7C9D0000h - 7D1F5000h
ole32                            loaded at 774A0000h - 775DD000h
shared                           loaded at 10000000h - 1002A000h
UxTheme                          loaded at 5B090000h - 5B0C8000h
COMDLG32                         loaded at 76340000h - 7638A000h
IMM32                            loaded at 76320000h - 7633D000h
MSCTF                            loaded at 74690000h - 746DC000h
msctfime                         loaded at 75140000h - 7516E000h
foo_freedb2                      loaded at 00AC0000h - 00B00000h
foo_playcount                    loaded at 00B10000h - 00B3A000h
foo_navigator                    loaded at 00B60000h - 00B94000h
foo_input_wma                    loaded at 00BC0000h - 00BEE000h
WMVCore                          loaded at 7D790000h - 7D99B000h
DRMClien                         loaded at 00C00000h - 00C4F000h
OLEAUT32                         loaded at 770E0000h - 7716B000h
MSACM32                          loaded at 77BB0000h - 77BC5000h
WINMM                            loaded at 76AE0000h - 76B0F000h
msdmo                            loaded at 73600000h - 73607000h
MSVFW32                          loaded at 75BA0000h - 75BC1000h
urlmon                           loaded at 44160000h - 44287000h
iertutil                         loaded at 43E00000h - 43E45000h
VERSION                          loaded at 77BD0000h - 77BD8000h
WININET                          loaded at 44080000h - 44150000h
Normaliz                         loaded at 00C50000h - 00C59000h
WMASF                            loaded at 59A10000h - 59A4C000h
wmidx                            loaded at 4B410000h - 4B439000h
WSOCK32                          loaded at 71A10000h - 71A1A000h
WS2_32                           loaded at 719F0000h - 71A07000h
WS2HELP                          loaded at 719E0000h - 719E8000h
foo_uie_graphical_browser        loaded at 00E90000h - 00F24000h
MSIMG32                          loaded at 76310000h - 76315000h
gdiplus                          loaded at 4EB80000h - 4ED26000h
foo_infobox                      loaded at 00F50000h - 00F90000h
foo_uie_albumart                 loaded at 00FB0000h - 00FED000h
foo_input_mslive                 loaded at 01010000h - 01051000h
foo_dsp_std                      loaded at 01080000h - 010C8000h
foo_uie_quicksearch              loaded at 010F0000h - 01136000h
foo_uie_lyrics                   loaded at 01160000h - 011BC000h
foo_uie_lyrics_panel             loaded at 011E0000h - 01244000h
foo_whatsnew                     loaded at 01270000h - 012B0000h
foo_converter                    loaded at 012D0000h - 0133C000h
foo_ui_std                       loaded at 01360000h - 01434000h
foo_unpack                       loaded at 01460000h - 0148D000h
foo_abx                          loaded at 014B0000h - 014E1000h
foo_rgscan                       loaded at 01510000h - 0156B000h
foo_run                          loaded at 01590000h - 015BE000h
foo_fileops                      loaded at 015E0000h - 01626000h
foo_uie_vis_peakmeter_spectrum   loaded at 01650000h - 0168F000h
foo_uie_trackinfo                loaded at 016B0000h - 016D5000h
foo_uie_trackinfo_mod            loaded at 01700000h - 01756000h
MSVCP80                          loaded at 7C420000h - 7C4A7000h
MSVCR80                          loaded at 78130000h - 781CB000h
foo_menu_addons                  loaded at 01780000h - 017C5000h
foo_ui_columns                   loaded at 017F0000h - 0191D000h
foo_utils                        loaded at 01940000h - 01984000h
foo_cdda                         loaded at 019B0000h - 019F1000h
foo_uie_vis_channel_spectrum     loaded at 01A20000h - 01A5D000h
foo_misc_addons                  loaded at 01A80000h - 01AAA000h
foo_snarl                        loaded at 01AD0000h - 01AF2000h
foo_uie_elplaylist               loaded at 01B20000h - 01B87000h
foo_dbsearch                     loaded at 01BB0000h - 01C20000h
foo_input_std                    loaded at 01C40000h - 01D79000h
foo_albumlist                    loaded at 01DA0000h - 01E0B000h
mscms                            loaded at 73A80000h - 73A95000h
WINSPOOL                         loaded at 72F50000h - 72F76000h
icm32                            loaded at 58A10000h - 58A51000h
libpng13                         loaded at 036A0000h - 036E5000h
zlib1                            loaded at 03700000h - 03728000h
imagehlp                         loaded at 76C40000h - 76C68000h
DBGHELP                          loaded at 5D3F0000h - 5D491000h

Stack dump analysis:
Address: 0185E220h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018DB994h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018D367Ch, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018D367Ch, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 0159D4BCh, location: "foo_run", loaded at 01590000h - 015BE000h
Address: 0187C259h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018C2C88h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 0185E636h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 015B754Ch, location: "foo_run", loaded at 01590000h - 015BE000h
Address: 018DB994h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018D367Ch, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018C4030h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 01863C07h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018D367Ch, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E39B3BCh, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DefWindowProcW" (+00000090h)
Address: 7E39B397h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DefWindowProcW" (+0000006Bh)
Address: 018C72DEh, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 01864136h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E39C129h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetClassLongW" (+00000030h)
Address: 7E398896h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetWindowLongW" (+00000000h)
Address: 7E39D3C6h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "EnumDisplayMonitors" (+0000047Bh)
Address: 7E398B16h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetWindowThreadProcessId" (+000000A6h)
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E3988C1h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetWindowLongW" (+0000002Bh)
Address: 7E3988CAh, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetWindowLongW" (+00000034h)
Address: 018C7750h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E3C0477h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DeregisterShellHookWindow" (+000001CFh)
Address: 01890146h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E3988CAh, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetWindowLongW" (+00000034h)
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E398724h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetDC" (+0000006Dh)
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E39D043h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "EnumDisplayMonitors" (+000000F8h)
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E3C0477h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DeregisterShellHookWindow" (+000001CFh)
Address: 7E398820h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetDC" (+00000169h)
Address: 7E39B4B0h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DefWindowProcW" (+00000184h)
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E3C0477h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DeregisterShellHookWindow" (+000001CFh)
Address: 7E39B4C0h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DefWindowProcW" (+00000194h)
Address: 7E39FD09h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "UserClientDllInitialize" (+000007F1h)
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7C91EAE3h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "KiUserCallbackDispatcher" (+00000013h)
Address: 017F0000h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018D9200h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E39B463h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DefWindowProcW" (+00000137h)
Address: 7E3A011Eh, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "CreateWindowExW" (+000001EEh)
Address: 7E3A00E4h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "CreateWindowExW" (+000001B4h)
Address: 017F0000h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018D9200h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E3A0109h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "CreateWindowExW" (+000001D9h)
Address: 017F0000h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7C9205D4h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+00000000h)
Address: 01B6B618h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 01B38240h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 01B3B300h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 01B38240h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 7C920732h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C920732h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C920732h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C91EE18h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "strchr" (+00000117h)
Address: 7C921538h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "wcsncpy" (+00000AA9h)
Address: 7C921596h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "wcsncpy" (+00000B07h)
Address: 7C9206EBh, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 7C9205D4h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+00000000h)
Address: 7C927C0Ch, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlReAllocateHeap" (+0000020Fh)
Address: 7C927BF5h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlReAllocateHeap" (+000001F8h)
Address: 7C927BB0h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlReAllocateHeap" (+000001B3h)
Address: 7C920732h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C920732h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C920732h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C9205D4h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+00000000h)
Address: 7C91EE18h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "strchr" (+00000117h)
Address: 7C920738h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+00000164h)
Address: 7C920732h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C9206ABh, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+000000D7h)
Address: 7C9206EBh, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 7C9205D4h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+00000000h)
Address: 7E399481h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetWindowLongA" (+00000034h)
Address: 7E3994AEh, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetWindowLongA" (+00000061h)
Address: 7E39B41Dh, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DefWindowProcW" (+000000F1h)
Address: 7C927BF5h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlReAllocateHeap" (+000001F8h)
Address: 7C927BB0h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlReAllocateHeap" (+000001B3h)
Address: 7E3C0477h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DeregisterShellHookWindow" (+000001CFh)
Address: 7E39B3E9h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DefWindowProcW" (+000000BDh)
Address: 5B091AF6h, location: "UxTheme", loaded at 5B090000h - 5B0C8000h
Address: 7C91EE18h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "strchr" (+00000117h)
Address: 7C920738h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+00000164h)
Address: 7C9205C8h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlFreeHeap" (+0000018Bh)
Address: 7C920551h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C92056Dh, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 5B091B3Dh, location: "UxTheme", loaded at 5B090000h - 5B0C8000h
Address: 7E398BC9h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetWindowThreadProcessId" (+00000159h)
Address: 7E3F1088h, location: "USER32", loaded at 7E390000h - 7E421000h
Address: 7E39B3BCh, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DefWindowProcW" (+00000090h)
Address: 7E39B397h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DefWindowProcW" (+0000006Bh)
Address: 7C9205C8h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlFreeHeap" (+0000018Bh)
Address: 7C920551h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C92056Dh, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 018417D2h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 0189C560h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7C91EE18h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "strchr" (+00000117h)
Address: 7C92056Dh, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 01898BC9h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 01898BE8h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 0189C560h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7C91EE18h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "strchr" (+00000117h)
Address: 7C9206F0h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+0000011Ch)
Address: 7C91EE18h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "strchr" (+00000117h)
Address: 7C920570h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlFreeHeap" (+00000133h)
Address: 7C920833h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+0000025Fh)
Address: 017F0108h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7C91EE18h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "strchr" (+00000117h)
Address: 7C920838h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+00000264h)
Address: 7E3A01D7h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "CreateWindowExW" (+000002A7h)
Address: 017F0000h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018F902Ch, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018BE388h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018613D8h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018613F1h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018BECF8h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018D9200h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E39FF63h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "CreateWindowExW" (+00000033h)
Address: 018D9200h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 017F0000h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 0188FE31h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018D9200h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 017F0000h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018D9AF4h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 017FC524h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 0183EBC0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018D50CCh, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E39B41Dh, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DefWindowProcW" (+000000F1h)
Address: 018D6E60h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E39B3E9h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DefWindowProcW" (+000000BDh)
Address: 7E3994AEh, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetWindowLongA" (+00000061h)
Address: 7E39B41Dh, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DefWindowProcW" (+000000F1h)
Address: 018D367Ch, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 0101BB88h, location: "foo_input_mslive", loaded at 01010000h - 01051000h
Address: 018C31CEh, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 0183FE0Ah, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E398B16h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetWindowThreadProcessId" (+000000A6h)
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E3988C1h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetWindowLongW" (+0000002Bh)
Address: 7E3988CAh, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetWindowLongW" (+00000034h)
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E3C0477h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DeregisterShellHookWindow" (+000001CFh)
Address: 01890146h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E3988CAh, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetWindowLongW" (+00000034h)
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E398724h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetDC" (+0000006Dh)
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E39D043h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "EnumDisplayMonitors" (+000000F8h)
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E3C0477h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DeregisterShellHookWindow" (+000001CFh)
Address: 7E398820h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetDC" (+00000169h)
Address: 7E39B4B0h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DefWindowProcW" (+00000184h)
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E3C0477h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DeregisterShellHookWindow" (+000001CFh)
Address: 7E39B4C0h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DefWindowProcW" (+00000194h)
Address: 7E39FD09h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "UserClientDllInitialize" (+000007F1h)
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7C91EAE3h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "KiUserCallbackDispatcher" (+00000013h)
Address: 017F0000h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018D6E80h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 0188FFB0h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E39B463h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "DefWindowProcW" (+00000137h)
Address: 7E3A011Eh, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "CreateWindowExW" (+000001EEh)
Address: 7E3A00E4h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "CreateWindowExW" (+000001B4h)
Address: 017F0000h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 018D6E80h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7E3A0109h, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "CreateWindowExW" (+000001D9h)
Address: 017F0000h, location: "foo_ui_columns", loaded at 017F0000h - 0191D000h
Address: 7C920732h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C91EE18h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "strchr" (+00000117h)
Address: 7C921538h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "wcsncpy" (+00000AA9h)
Address: 7C9206EBh, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 01B22D90h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 01B579E9h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 01B72F88h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 01B72F80h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 01B72EB0h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 01B72EB0h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 01B72EB0h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 01B72EB0h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 01B72EB0h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 01B72EB0h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 01B72EB0h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 01B72EB0h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 01B72EB0h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 01B72EB0h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 01B72EB0h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 01B72EB0h, location: "foo_uie_elplaylist", loaded at 01B20000h - 01B87000h
Address: 7C9205C8h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlFreeHeap" (+0000018Bh)
Address: 7C920551h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C92056Dh, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 7E3994AEh, location: "USER32", loaded at 7E390000h - 7E421000h
Symbol: "GetWindowLongA" (+00000061h)
Address: 7C920732h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C91EE18h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "strchr" (+00000117h)
Address: 7C921538h, location: "ntdll", loaded at 7C910000h - 7C9C7000h
Symbol: "wcsncpy" (+00000AA9h)

Version info:
foobar2000 v0.9.6 beta 3
UNICODE
Windows 5.1


Additional info:
Special file info box 2.0.4  (foo_infobox)
Acro WMA decoder 0.1.7.2 (SSE)  (foo_input_wma)
CD Audio Decoder 2.1.3  (foo_cdda)
ReplayGain Scanner 2.0.8  (foo_rgscan)
Run services 0.3.4  (foo_run)
Channel Spectrum panel 0.17.2  (foo_uie_vis_channel_spectrum)
Misc. Addons 0.1.4 (SSE)  (foo_misc_addons)
ABX Comparator 1.3.3  (foo_abx)
Track info panel mod 0.8.0 beta [Jan  5 2007 - 13:36:12]  (foo_uie_trackinfo_mod)
Lyric Show Panel 0.3.3.3 [Sep 23 2008 - 14:15:11]  (foo_uie_lyrics)
Standard Input Array 1.0  (foo_input_std)
ELPlaylist 0.6.2.8(beta)  (foo_uie_elplaylist)
Lyrics panel 0.35  (foo_uie_lyrics_panel)
Quick Search Toolbar 2.8l  (foo_uie_quicksearch)
Feature Watcher 1.0.6  (foo_whatsnew)
ZIP/GZIP reader 1.0  (foo_unpack)
Navigator 0.63  (foo_navigator)
Album List 4.3  (foo_albumlist)
Peakmeter Spectrum Visualisation 0.1.0.2 beta  (foo_uie_vis_peakmeter_spectrum)
Converter 1.2  (foo_converter)
Playlist Tools 0.6.2 beta 6  (foo_utils)
Album Art Panel 0.2.7.1  (foo_uie_albumart)
Database Search 1.4  (foo_dbsearch)
Graphical Browser rev015  (foo_uie_graphical_browser)
File Operations 2.1  (foo_fileops)
Columns UI 0.3.4.2  (foo_ui_columns)
foo_snarl 0.0.1.5  (foo_snarl)
freedb Tagger 0.6  (foo_freedb2)
Track info panel 0.8  (foo_uie_trackinfo)
RAR reader 1.1  (foo_unpack)
Default User Interface 0.9.5  (foo_ui_std)
mslive 0.4.8 (SSE)  (foo_input_mslive)
Menu Addons 0.4 (SSE)  (foo_menu_addons)
Standard DSP Array 1.0  (foo_dsp_std)
Playback Statistics 2.1.6  (foo_playcount)
foobar2000 core 0.9.6 beta 3  (Core)

If any can help me it would be very nice