Help - Search - Members - Calendar
Full Version: [Foobar] IBIZA by Br3tt
Neowin Forums > Customizing Windows > Customization & Skinning Section
Pages: 1, 2
Br3tt
i B i Z A
ColumnsUI & Panel Stack Splitter config for foobar2000 v0.9.4, v0.9.5 & v0.9.6



click below for full view :



First release : 17/06/2008
Last Release : 26/10/2008
Version : 2.0b
NEW!


/// PLEASE READ THIS BEFORE GETTING MY CONFIG ///

ColumnsUI Config using Panel Stack Splitter give to foobar200 a kick ass look, but these configs are not recommended to newbees to foobar2000, DefaultUI is a better choice is you don't know how configuring a component and if you don't know a little bit titleformatting script used in foobar.

--- use at your own risk and matching your foobar capacities ---


/// COMPONENTS REQUIRED ///

- ColumnsUI 0.3 beta2 preview9 or higher - foo_ui_columns.dll
- Panel Stack Splitter 0.3.4a or higher - foo_uie_panel_splitter.dll
- ELPlaylist 0.6.2.6b or higher - foo_uie_elplaylist
- (Chronial) Cover Flow 0.3.0 or higher - foo_chronflow.dll
- Graphical Browser rev015 or higher - foo_uie_graphical_browser.dll
- Lyric Show Panels 0.3.1.1b8 or higher - foo_uie_lyrics.dll
- Track info panel mod 0.8.0 or higher - foo_uie_trackinfo_mod.dll
- Quick Search Toolbar 2.8l or higher - foo_uie_quicksearch.dll
- Channel Spectrum Panel 0.16 or higher - foo_uie_vis_channel_spectrum.dll
- Album list panel 0.2.3beta or higher - foo_uie_albumlist.dll
- Playlists Dropdown 0.6 alpha4 or higher - foo_uie_playlists_dropdown.dll
- WSH Panel 0.7.2 or higher - foo_uie_wsh_panel.dll
- (optional) last.fm radio 0.5 or higher - foo_lastfm_radio.dll



/// FONTS REQUIRED ///

- Segoe UI
- Angelina
- Smirnof
- Uni 05_53
- Wingdings



/// DOWNLOADS ///

get files from DA : http://br3tt.deviantart.com/art/IBIZA-foobar-config-91437036


/// INSTALLATION ///

1) extract .7z archive in the default foobar2000 folder (must be C:\Program Files\foobar2000\)
2) run foobar with ColumnsUI as interface
3) go to preferences -> ColumnsUI -> Main -> use Import Button to import the ibiza20b.fcl file, apply the imported layout !
4) you may have to configure stand alone components like Quick Search Toolbar, Cover Flow, Lyric Show panel ... cause the configuration file do not contains my settings (not stored in the .fcl)
5) you may have to change the PATH for covers and artist photos for each components using them, simply rigth-click on the component to update --> enter settings of the component --> modify the path for the variables cover.path and/or artist.path, generally coded in the first line of the code of the component (graphical browser, ELPlaylist, Panel Stack Splitter)
6) modifying PATH of covers and artists photos for the background Transparency in ELPlaylist :
- transparency is ON by default, if nothing appear (so looks like it is OFF) it is because the PATH for covers and Artist Photo is mine and you have to modify them !
=> the more easy way if you don't know how to find the code for the Panel Stack Splitter that contains the ELPlaylist panel is explained here :
=> rigth-click in the back space (2 pixeld high!) just between the top line just above the playlist and top of the playlist, see below and follow instructions to modify the PATH of your covers and Photos :

...to make the transparency brighter or darker, modify the __TRANSPARENCY__ value in ELPlaylist Settings [0-255] ... default value (for my brigth monitor) is 100 :



/// STARTUP possible Settings ///

1/ Playback Order

- to set the playback order to use on startup, you have to go to Splitter Settings (rigth click on the playback button bar except on the rating system! ---> Splitter Settings ...)
in the list of panels used, you'll find at top 3 panels (which are only used as boolean) : Playback Order Default, Shuffle & Repeat
==> to select which you want to use on startup, select which you want to display and on the rigth of this list, uncheck the box 'Hidden on startup' ... for the 2 other panels check the box !!!

2/ Left Panel display

same way, but select in the list of panels 'Left Panel' and use the box option to hide or show the panel on startup.

3/ Split Panel display

same way, but select in the list of panels 'Split Panel' and use the box option to hide or show the panel on startup.


/// CHRONFLOW JScript ///

CODE

// Author: mil3s (moded by br3tt for point of view)

// General Notes:
// Most of these functions return an array with 3 elements
// These are the x,y,z coordinates in 3d-space
// x is left to right
// y is bottom to top
// z is front to back

var coverSpacing = 0.12;

/************************* COVER DISPLAY *****************/
// These functions define the Display of the single Covers
// The given parameter coverId is a floating point number.
// It is 0 for the center cover, 1 for the one right
// beneath it, -1 for the one on the left side and so on.
// During movement the values float between the integer
// values.
function coverPosition(coverId){
var x, y, z;
y = 0;
if (Math.abs(coverId) <= 1){ // The centered cover
z = 4 + 0.5 * (1 - Math.abs(coverId));
x = coverId * 0.875;
} else { // The covers on the side
z = 4 - (Math.abs(coverId)-1) * 0.01;
x = 0.875 + coverSpacing * (Math.abs(coverId)-1);
if (coverId < 0)
x *= -1;
}
return new Array(x, y, z);
}

// return array is (angle, x, y, z) - this rotates
// the cover *angle* degrees around the vector (x,y,z)
// With (0,0,0,0) the cover is parallel to the x-y-Plane
function coverRotation(coverId){
var angle;
if (Math.abs(coverId) < 1){ // The centered cover
angle = coverId * -60;
} else { // The covers on the side
if (coverId > 0)
angle = -60;
else
angle = 60;
}
return new Array(angle, 0, 1, 0);
}

// Defines the the size boundaries for the cover.
// Aspect ratio is preserved.
// Return Array is (widht, height)
function coverSizeLimits(coverId){
return new Array(1, 1);
}


// Sets which point of the cover coverPosition() defines
// (-1,-1) means bottom left, (0,0) means center,
// (1,1) means top right, (0, -1) means bottom center etc.
// The cover is also rotated around this point.
function coverAlign(coverId){
return new Array(0, -1);
}


// Defines the range of covers to draw.
// Return array is (leftmostCover, rightmostCover)
// This interval shouldn't be larger than 80
// The center cover is 0.
function drawCovers(){
return new Array(-30, 30);
}


// In which direction should the fov be expanded/shrinked
// when the panel is resized?
// If this returns (0,1), the height is fixed.
// If this returns (1,0), the width is fixed.
// You can also return stuff like (0.5,0.5) or (7, 3)
// The values determine how important it is for this
// dimension to stay fixed.
function aspectBehaviour(){
return new Array(0, 1);
}

/************************** CAMMERA SETUP ****************/
// Position of the viewport
function eyePos(){
return new Array(0, 0.90, 6.0);
}
// Defines the point for the eye to look at
function lookAt(){
return new Array(-0.0, -0.75, 0.6);
}
// Used to rotate the view.
// The returned Vector points upwards in the viewport.
// This vector must not be parallel to the line of sight from the
// eyePos point to the lookAt point.
function upVector(){
return new Array(0, 1, 0);
}

/************************** MIRROR SETUP *****************/
function showMirrorPlane(){
return true; // return false to hide the mirror
}
// Any Point on the Mirror Plane
function mirrorPoint (){
return new Array(0, 0, 0);
}
// Normal of the Mirror Plane
function mirrorNormal (){
return new Array(0, 1, 0);
}


/// POSSIBLE TROUBLES ///

As said above, ColumnsUI Config using Panel Stack Splitter give to foobar200 a kick ass look, but these configs are not recommended to newbees to foobar2000, DefaultUI is a better choice is you don't know how configuring a component and if you don't know a little bit titleformatting script used in foobar.

--- use at your own risk and matching your foobar capacities ---

enjoy! wink.gif
Hawk999
Never mind. whistle.gif
Br3tt
Quote - (Hawk999 @ Jun 17 2008, 17:28) *
ColumnsUI will not import ibiza. it complains that 'track info' is not present.


1) have you installed track info and track info mod components like listed ?
2) if yes, have you got some error message at the launch of foobar about track info ?
3) are you running XP or Vista ? (i use vista)
4) Import works well for me, check the version of ColumnsUI you are running ?

i hope you'll find the pb smile.gif
Hawk999
Quote - (Br3tt @ Jun 17 2008, 17:36) *
1) have you installed track info and track info mod components like listed ?
2) if yes, have you got some error message at the launch of foobar about track info ?
3) are you running XP or Vista ? (i use vista)
4) Import works well for me, check the version of ColumnsUI you are running ?

i hope you'll find the pb smile.gif


Thanks for the fast anwser. I must be going blind.
You linked to all the components and I did not see them...
Br3tt
Quote - (Hawk999 @ Jun 17 2008, 17:37) *
Thanks for the fast anwser. I must be going blind.
You linked to all the components and I did not see them...


link to package added in a second time, so you're (maybe) not blind wink.gif

please give me feeback about it and tell me if you are running XP or Vista please, thanx.
Nxqd3051990
Great works man, Thanks a lot smile.gif
JesterThump
I thought I' give it a try but when I try to import the FCL I get an error:

The layout import was aborted because the following required panels are not installed:

NG Playlist GUID:(loads of letters and numbers)

I've got no clue what an NG Playlist is sick.gif

Hawk999
Quote - (Br3tt @ Jun 17 2008, 17:42) *
link to package added in a second time, so you're (maybe) not blind wink.gif

please give me feeback about it and tell me if you are running XP or Vista please, thanx.


I am running XP. I Have not succeeded in getting it to work going to try again.

:edit:

Now its installed. but I does not find the artist picture.
I have it in the same folder as my mp3 files.

It does 'see' my cover picture its in the same location and its called 'folder.jpg'
Br3tt
Quote - (JesterThump @ Jun 17 2008, 17:53) *
I thought I' give it a try but when I try to import the FCL I get an error:

The layout import was aborted because the following required panels are not installed:

NG Playlist GUID:(loads of letters and numbers)

I've got no clue what an NG Playlist is sick.gif


shiftyninja.gif you're using an older version of columnsUI, check the version i recommand!
Br3tt
Quote - (Hawk999 @ Jun 17 2008, 17:55) *
...
Now its installed. but I does not find the artist picture.
I have it in the same folder as my mp3 files.

It does 'see' my cover picture its in the same location and its called 'folder.jpg'


see point 5 of my installation notes !

"5) you may have to change the PATH for covers and artist photos for each components using them, simply rigth-click on the component to update --> enter settings of the component --> modify the path for the variables cover.path and/or artist.path, generally coded in the first line of the code of the component (graphical browser, ELPlaylist, Panel Stack Splitter)"

so you have to replace the line of code :
$puts(artist.path,'Z:\_artists_\'%artist%'.*')
by this one (if your artist photo is named artist.jpg else modify this below) :
$puts(artist.path,$replace(%path%,%filename_ext%,%artist%.jpg))
Hawk999
Quote - (Br3tt @ Jun 17 2008, 19:24) *
see point 5 of my installation notes !

"5) you may have to change the PATH for covers and artist photos for each components using them, simply rigth-click on the component to update --> enter settings of the component --> modify the path for the variables cover.path and/or artist.path, generally coded in the first line of the code of the component (graphical browser, ELPlaylist, Panel Stack Splitter)"

so you have to replace the line of code :
$puts(artist.path,'Z:\_artists_\'%artist%'.*')
by this one (if your artist photo is named artist.jpg else modify this below) :
$puts(artist.path,$replace(%path%,%filename_ext%,%artist%.jpg))



Br3tt I found the code:

You gave:

$puts(artist.path,$replace(%path%,%filename_ext%,%artist%.jpg))

I changed it in:

$puts(artist.path,$replace(%path%,%filename_ext%,artist.jpg))

Without the '%' before and after the 'artist' part of the jpg file.

Now the only problem I have is that the album art is gone in the playlist
that shows the 'ON AIR' message. That's not a problem as I use the other playlist.

Thanks for this config. It's really nice!
Br3tt
Quote - (Hawk999 @ Jun 17 2008, 21:29) *
Now the only problem I have is that the album art is gone in the playlist
that shows the 'ON AIR' message. That's not a problem as I use the other playlist.

Thanks for this config. It's really nice!
[/color][/color]


you have to set the path for cover in NG Playlist, see below :

Hawk999
Quote - (Br3tt @ Jun 17 2008, 22:59) *
you have to set the path for cover in NG Playlist, see below :


That worked!

Thanks again for all the support Br3tt.
Appreciate it. smile.gif
naserbaser
Got everything working except the "Kroeger 05_55" font. I have found and installed a lot of different fonts named just like that but I keep getting the "start" button and the list complaining it's not installed.
Any ideas? Or where to find the right one, as I seem to have failed miserably tongue.gif


After some more googling I found the version it liked tongue.gif

thanks alot for this, looks great

btw, any simple way to disable or remove the rating and that 'start' button on startup? if not, then I'd just learn to ignore it. thanks again
Br3tt
Quote - (naserbaser @ Jun 18 2008, 10:08) *
Got everything working except the "Kroeger 05_55" font. I have found and installed a lot of different fonts named just like that but I keep getting the "start" button and the list complaining it's not installed.
Any ideas? Or where to find the right one, as I seem to have failed miserably tongue.gif


After some more googling I found the version it liked tongue.gif

thanks alot for this, looks great

btw, any simple way to disable or remove the rating and that 'start' button on startup? if not, then I'd just learn to ignore it. thanks again


ok, i explain why Start screen always display at each launch :

- ColumnsUI and Panel Splitter don't have permanent variables like PVAR in PanelsUI, so, you can't save the layout disposition on exiting or playback order for example ... that is a big lack comparing to PanelsUI.

so i can't say 'Show Start Screen only on time at the 1st launch' and i'll not remove it cause i need it to set some variables at the launch, cause the only way to set some variables is using a button to execute a command.

You know all now wink.gif

btw it is not very hard to click a button at each launch of foobar, no ?
naserbaser
Quote - (Br3tt @ Jun 18 2008, 10:20) *
ok, i explain why Start screen always display at each launch :

- ColumnsUI and Panel Splitter don't have permanent variables like PVAR in PanelsUI, so, you can't save the layout disposition on exiting or playback order for example ... that is a big lack comparing to PanelsUI.

so i can't say 'Show Start Screen only on time at the 1st launch' and i'll not remove it cause i need it to set some variables at the launch, cause the only way to set some variables is using a button to execute a command.

You know all now wink.gif

btw it is not very hard to click a button at each launch of foobar, no ?


Oh, okay smile.gif
It wasn't a complain, just a question with a great answer, so I'm all good now smile.gif

The only thing is it doesn't work very well when trying to play for example .mp3 directly from windows without foobar being opened first. But that's not a real problem, I'll just have to remember to keep foobar started smile.gif No worries.

Thanks again for an awesome config, really appreciate the work
Br3tt
updated to v1.0c to fix bug display on the start screen when launching foobar from a music file click.
Br3tt
v1.1a released, update .fcl file and images folder too (added new buttons and deleted unused images)

thanx to report me bugs wink.gif
Hawk999
Quote - (Br3tt @ Jun 20 2008, 17:12) *
v1.1a released, update .fcl file and images folder too (added new buttons and deleted unused images)

thanx to report me bugs wink.gif


Br3tt, I don't see the 'Lock' picture.
I can lock the play list so the functionality is there but there is no 'lock' graphic.

I hope I am making sense to you.
iamthelaw
i am also missing the lock button, and also the icon on far left to hide/show the left hand panel too....
Br3tt
Quote - (nFHQ|MaTrIx @ Jun 20 2008, 21:26) *
i am also missing the lock button, and also the icon on far left to hide/show the left hand panel too....


nothing removed, they are present !!



@nFHQ|MaTrIx : the button is not showing ? just refresh your images/ibiza folder with the lastest images.7z archive wacko.gif
iamthelaw
thanks br3tt, i didnt realise i had to re-download the images archive, thanks its working now, awesome config smile.gif
Hawk999
Thanks br3tt. It works now. smile.gif
Br3tt
v1.2 preview, new split screen mode added smile.gif


Hawk999
Nice! Very nice. smile.gif
Keltha
The link to the Component is broken (error 404).
Br3tt
Quote - (Keltha @ Jun 21 2008, 20:55) *
The link to the Component is broken (error 404).


fixed !
Br3tt
last preview of IBIZA v1.2 :



release soon.
iamthelaw
w00t.gif
Hawk999
thumbs_up.gif
naserbaser
I must say that this is looking more and more awesome smile.gif
didn't think you could make it any nicer then it already is, but somehow 1.2 looks greater then ever smile.gif

thanks again man
dawxxx666
Really good job, mate. 'Ibiza' makes me want to stop using PanelsUI smile.gif
Br3tt
Quote - (dawxxx666 @ Jun 24 2008, 14:42) *
Really good job, mate. 'Ibiza' makes me want to stop using PanelsUI smile.gif


v1.2 is very slow ontrack change, and i have found why, so, i'll release v1.3 very soon to fix the pb !

thanx dawid smile.gif
Br3tt
ok v1.2 fixed et uploaded, now you've choice between v1.2a or v1.2b, see 1st post for details

1.3 in progress ...
TheHMan
Can anyone help me setting this up like in the pictures as i am very new to foobar and its a bit more complicated than the zune software lmao, but i especially cant get the artist photos appear.
thanks
Br3tt
Quote - (TheHMan @ Jun 24 2008, 23:58) *
Can anyone help me setting this up like in the pictures as i am very new to foobar and its a bit more complicated than the zune software lmao, but i especially cant get the artist photos appear.
thanks


just read the topic, already explain in post #10
Napalm Frog
The new version is great, however, why does it by default start on shuffle playlist? I listen to my CDs in order, and I can't find where to switch the setting to save it for every time I open the program.
TheHMan
Ive done that but then where do i put my artist photos?
Br3tt
Quote - (TheHMan @ Jun 25 2008, 08:05) *
Ive done that but then where do i put my artist photos?


where you want !

after, you only have to modify the variable artist.path in the code to indicate the PATH used

Quote - (Napalm Frog @ Jun 25 2008, 05:50) *
The new version is great, however, why does it by default start on shuffle playlist? I listen to my CDs in order, and I can't find where to switch the setting to save it for every time I open the program.


as you (should wink.gif) know, columnsUI don't handle PVAR like panelsUI does, so i have no way to memorize on exit the playback order. It stay the same after a restart, i know that, but to display the rigth button status, i have no possibility to know what is the active playback order, so i enforce i to a default choice (shuffle tracks, which is my most used order, so, button reflect the good playback order at launch.

i could add 3 fake panels used like booleans (displayed or not) (already do it for hidding Start Panel) named 'PO default' 'PO Shuffle' and 'PO Repeat' and you'll only have to select (once) which 'boolean' to set to visible on startup (the 2 other are to be hidden on startup (Panel SPlitter option button to check)

i'll try to put this in 1.3...
Br3tt
v1.3 released

read 1st post to see check news (startup settings ...)
Hawk999
Wow! Works great Br3tt!! Thanks for all the hard work and great support. thumbs_up.gif
maxtuska
Hi there folks.

And Br3tt, thanks a lot for this awesome ibiza-looks you have made for us.

I have one small problem though. I canīt figure out why all my folder images are not present / shown. I know they are there, because every other players can show them right. I have tagged my music lately so i know i have images for every album.

1. Could the problem be that the image is not inside the folders, because i have inserted it through mp3tag - software?
2. Could the problem be that the images are different sizes, mainly 160x160. Is there somekind of SIZE your code thinks is right?

The thing i am after is that my album art shows right way in left side area of the screenshot i have taken. Also the album art should be shown in playlist. As you can see the coverflow shows every albums right.

Is there a way to get this thing work?

http://www.mediafire.com/imageview.php?qui...no5&thumb=4
maxtuska
Nevermind. Sorted the problem.
Br3tt
I B I Z A 1.4 preview

added a real seekbar smile.gif using WSH panels component


Br3tt
I B I Z A 1.4 released, go to 1st post smile.gif

SpecrtoK
Where i put the other files of foo_chronflow_v0.3.0.zip and up455.zip?

Thanx, great skin
Br3tt
Quote - (SpecrtoK @ Jun 29 2008, 20:58) *
Where i put the other files of foo_chronflow_v0.3.0.zip and up455.zip?

Thanx, great skin


hi newbee smile.gif

you don't need them, just .dll is to put in /components, other files are sources code or advertises...
ge_generation
Hey Br3tt thanks for your work. I'm having problems trying to load the fcl file. foobar keeps crashing. I don't know if its a vista thing, cause i'm running vista at the moment. Please help! Really want to user your skin
Br3tt
Quote - (ge_generation @ Jun 30 2008, 00:53) *
Hey Br3tt thanks for your work. I'm having problems trying to load the fcl file. foobar keeps crashing. I don't know if its a vista thing, cause i'm running vista at the moment. Please help! Really want to user your skin


show us your failure dump resulting from the crash (using codebox ... /codebox please)

it could help to determine what's wrong!
Aramil
Hi

I'm unable to run my foobar after I have installed this awesome skin.
Instead, each time foobar starts I get this error code.

CODE
Illegal operation:
Code: C000001Dh, flags: 00000000h, address: 04FC738Eh
Call path:
entry=>user_interface::init=>Create splitter host
Code bytes (04FC738Eh):
04FC734Eh:  CC CC 32 C0 C3 CC CC CC CC CC CC CC CC CC CC CC
04FC735Eh:  CC CC C2 04 00 CC CC CC CC CC CC CC CC CC CC CC
04FC736Eh:  CC CC 32 C0 C2 04 00 CC CC CC CC CC CC CC CC CC
04FC737Eh:  CC CC 83 EC 28 8B 11 66 0F EF C0 B8 FF FF FF 7F
04FC738Eh:  66 0F D6 44 24 20 89 44 24 20 89 44 24 24 8D 04
04FC739Eh:  24 50 8B 42 54 6A 00 6A 24 66 0F D6 44 24 0C 66
04FC73AEh:  0F D6 44 24 14 66 0F D6 44 24 1C 66 0F D6 44 24
04FC73BEh:  24 FF D0 50 FF 15 DC F1 FD 04 8B 44 24 2C 8B 4C
Stack (0012E038h):
0012E018h:  B5821C58 B58215F0 80565EEC 00000001
0012E028h:  B582185C 0000003B 00000083 007BA938
0012E038h:  0049B718 46CAA705 053AC4D8 053AC678
0012E048h:  00000000 053AC678 0012E03C 053AC678
0012E058h:  0012E08C 0049DC00 04C81067 0012E078
0012E068h:  00000024 00000024 000000DA 00000063
0012E078h:  00000000 7FFFFFFF 00000000 7FFFFFFF
0012E088h:  04C82610 04CC7F14 00000024 000000DA
0012E098h:  00000000 00000001 3B8101B1 04CC8038
0012E0A8h:  04CC3AB0 0012E158 00000018 7E36B4CB
0012E0B8h:  00000016 004EEEF8 04CC3B78 00000000
0012E0C8h:  00000000 00000000 406C2000 00000000
0012E0D8h:  00000000 00000000 00000000 00000000
0012E0E8h:  00000000 00000000 00000000 00000001
0012E0F8h:  00000000 0012E118 000000E0 04C93F64
0012E108h:  04CC5558 00000012 00000012 00000001
0012E118h:  0012E128 0012E174 04C8EEE3 00000001
0012E128h:  04C83011 04CC3AB0 0012E148 00000000
0012E138h:  057422C8 04CC3A98 05183D40 00000014
0012E148h:  00000000 00000000 000000E1 000000E8
Registers:
EAX: 7FFFFFFF, EBX: 00000006, ECX: 05003CA0, EDX: 04FE01C8
ESI: 00000001, EDI: 0000003F, EBP: 04CC7F14, ESP: 0012E038
Crash location: "foo_uie_wsh_panel", loaded at 04FC0000h - 04FF4000h

Loaded modules:
foobar2000                       loaded at 00400000h - 00522000h
ntdll                            loaded at 7C900000h - 7C9B2000h
kernel32                         loaded at 7C800000h - 7C8FC000h
COMCTL32                         loaded at 773C0000h - 774BC000h
msvcrt                           loaded at 77C00000h - 77C58000h
ADVAPI32                         loaded at 77DC0000h - 77E6C000h
RPCRT4                           loaded at 77E70000h - 77F01000h
GDI32                            loaded at 77F10000h - 77F57000h
USER32                           loaded at 7E360000h - 7E3F0000h
SHLWAPI                          loaded at 77F60000h - 77FD6000h
SHELL32                          loaded at 7C9C0000h - 7D1DE000h
ole32                            loaded at 774D0000h - 7760D000h
shared                           loaded at 10000000h - 1002A000h
COMDLG32                         loaded at 76380000h - 763C9000h
IMM32                            loaded at 76360000h - 7637D000h
uxtheme                          loaded at 5B1D0000h - 5B208000h
RocketDock                       loaded at 00A60000h - 00A72000h
PSAPI                            loaded at 76BE0000h - 76BEB000h
MSCTF                            loaded at 746D0000h - 7471B000h
msctfime                         loaded at 75180000h - 751AE000h
foo_albumlist                    loaded at 00B00000h - 00B67000h
foo_audioscrobbler               loaded at 00B90000h - 00BC1000h
WS2_32                           loaded at 71A50000h - 71A67000h
WS2HELP                          loaded at 71A40000h - 71A48000h
foo_bubble_coverflow             loaded at 00BF0000h - 00C79000h
OPENGL32                         loaded at 5F190000h - 5F25C000h
GLU32                            loaded at 5C8F0000h - 5C911000h
DDRAW                            loaded at 736F0000h - 73739000h
DCIMAN32                         loaded at 73B50000h - 73B56000h
gdiplus                          loaded at 4EBC0000h - 4ED63000h
foo_cdartdisplay                 loaded at 013E0000h - 01411000h
foo_cdda                         loaded at 01440000h - 01475000h
foo_chronflow                    loaded at 014A0000h - 01501000h
WINMM                            loaded at 76B20000h - 76B4E000h
OLEAUT32                         loaded at 77110000h - 7719B000h
foo_converter                    loaded at 016B0000h - 01719000h
foo_cwb_hooks                    loaded at 01740000h - 0178C000h
foo_dsp_std                      loaded at 017B0000h - 017F8000h
foo_freedb2                      loaded at 01820000h - 01861000h
foo_input_std                    loaded at 01890000h - 019B8000h
foo_lyricsdb                     loaded at 019E0000h - 01A0F000h
WININET                          loaded at 43620000h - 436F0000h
Normaliz                         loaded at 01A20000h - 01A29000h
iertutil                         loaded at 433A0000h - 433E5000h
foo_managedWrapper               loaded at 01C50000h - 01D1A000h
mscoree                          loaded at 79000000h - 79045000h
MSVCR80                          loaded at 78130000h - 781CB000h
MSVCP80                          loaded at 7C420000h - 7C4A7000h
msvcm80                          loaded at 7C4C0000h - 7C53D000h
mscorwks                         loaded at 79E70000h - 7A3D1000h
mscorlib.ni                      loaded at 790C0000h - 79BA6000h
mscorjit                         loaded at 79060000h - 790B3000h
rsaenh                           loaded at 0FFD0000h - 0FFF8000h
System.ni                        loaded at 7A440000h - 7ABFE000h
System.Drawing.ni                loaded at 7ADE0000h - 7AF74000h
System.Windows.Forms.ni          loaded at 7AFD0000h - 7BC56000h
xpsp2res                         loaded at 20000000h - 20310000h
dotnet_title                     loaded at 11000000h - 1101C000h
foo_playback_custom              loaded at 047F0000h - 04835000h
WINSPOOL                         loaded at 72F90000h - 72FB6000h
foo_playcount                    loaded at 04880000h - 048A8000h
foo_playcount_mod                loaded at 048D0000h - 048E5000h
foo_rgscan                       loaded at 04900000h - 0495A000h
foo_run                          loaded at 04980000h - 049AE000h
foo_uie_albumart                 loaded at 049D0000h - 04A0D000h
foo_uie_albumlist                loaded at 04A30000h - 04A73000h
foo_uie_elplaylist               loaded at 04AA0000h - 04AF2000h
foo_uie_graphical_browser        loaded at 04B20000h - 04BB4000h
MSIMG32                          loaded at 76350000h - 76355000h
foo_uie_lyrics                   loaded at 04BD0000h - 04C31000h
foo_uie_panel_splitter           loaded at 04C60000h - 04CA8000h
foo_uie_peakmeter                loaded at 04CD0000h - 04CF8000h
foo_uie_playlists_dropdown       loaded at 04D20000h - 04D59000h
foo_uie_powerpanels              loaded at 04D80000h - 04DA3000h
foo_uie_quicksearch              loaded at 04DD0000h - 04E16000h
foo_uie_single_column_playlist   loaded at 04E40000h - 04E8A000h
foo_uie_trackinfo                loaded at 04EA0000h - 04ECE000h
foo_uie_trackinfo_mod            loaded at 04EF0000h - 04F46000h
foo_uie_vis_channel_spectrum     loaded at 04F60000h - 04F9D000h
foo_uie_wsh_panel                loaded at 04FC0000h - 04FF4000h
foo_ui_columns                   loaded at 05040000h - 05169000h
foo_ui_panels                    loaded at 05190000h - 05257000h
foo_ui_std                       loaded at 05280000h - 05341000h
foo_winamp_spam                  loaded at 05370000h - 0538F000h
mscms                            loaded at 73AC0000h - 73AD5000h
icm32                            loaded at 5E260000h - 5E2A1000h
CLBCATQ                          loaded at 76FC0000h - 7703F000h
COMRes                           loaded at 77040000h - 7710D000h
VERSION                          loaded at 77BF0000h - 77BF8000h
msscript                         loaded at 6B980000h - 6B999000h
vbscript                         loaded at 73300000h - 73365000h
jscript                          loaded at 63380000h - 633F8000h
SXS                              loaded at 75E60000h - 75F10000h
nvoglnt                          loaded at 69500000h - 69D74000h
imagehlp                         loaded at 76C80000h - 76CA8000h
DBGHELP                          loaded at 59BC0000h - 59C61000h

Stack dump analysis:
Address: 0049B718h, location: "foobar2000", loaded at 00400000h - 00522000h
Address: 0049DC00h, location: "foobar2000", loaded at 00400000h - 00522000h
Address: 04C81067h, location: "foo_uie_panel_splitter", loaded at 04C60000h - 04CA8000h
Address: 04C82610h, location: "foo_uie_panel_splitter", loaded at 04C60000h - 04CA8000h
Address: 7E36B4CBh, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "DefWindowProcW" (+0000018Fh)
Address: 004EEEF8h, location: "foobar2000", loaded at 00400000h - 00522000h
Address: 04C93F64h, location: "foo_uie_panel_splitter", loaded at 04C60000h - 04CA8000h
Address: 04C8EEE3h, location: "foo_uie_panel_splitter", loaded at 04C60000h - 04CA8000h
Address: 04C83011h, location: "foo_uie_panel_splitter", loaded at 04C60000h - 04CA8000h
Address: 04C80CD5h, location: "foo_uie_panel_splitter", loaded at 04C60000h - 04CA8000h
Address: 04C8ED71h, location: "foo_uie_panel_splitter", loaded at 04C60000h - 04CA8000h
Address: 0508BC70h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05122034h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 051236D0h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05125828h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 0510FEDEh, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 0508CECAh, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E368B26h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "GetWindowThreadProcessId" (+000000A6h)
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E3688D1h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "GetWindowLongW" (+0000002Bh)
Address: 7E3688DAh, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "GetWindowLongW" (+00000034h)
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E390457h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "DeregisterShellHookWindow" (+000001CFh)
Address: 050DD3B6h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E3688DAh, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "GetWindowLongW" (+00000034h)
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E368734h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "GetDC" (+0000006Dh)
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E36D05Bh, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "EnumDisplayMonitors" (+000000F8h)
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E390457h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "DeregisterShellHookWindow" (+000001CFh)
Address: 7E368830h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "GetDC" (+00000169h)
Address: 7E36B4C0h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "DefWindowProcW" (+00000184h)
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E390457h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "DeregisterShellHookWindow" (+000001CFh)
Address: 7E36B4D0h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "DefWindowProcW" (+00000194h)
Address: 7E36F9FEh, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "CallNextHookEx" (+000001A3h)
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7C90EAE3h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "KiUserCallbackDispatcher" (+00000013h)
Address: 05040000h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05123D40h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E36B473h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "DefWindowProcW" (+00000137h)
Address: 7E36FE13h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "CreateWindowExW" (+000001EEh)
Address: 7E36FDD9h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "CreateWindowExW" (+000001B4h)
Address: 05040000h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05123D40h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "strchr" (+00000117h)
Address: 7C910738h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlAllocateHeap" (+00000164h)
Address: 05040000h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7C910000h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlNtStatusToDosErrorNoTeb" (+00000477h)
Address: 77F193DAh, location: "GDI32", loaded at 77F10000h - 77F57000h
Symbol: "CreateFontIndirectExW" (+00000084h)
Address: 77F193B5h, location: "GDI32", loaded at 77F10000h - 77F57000h
Symbol: "CreateFontIndirectExW" (+0000005Fh)
Address: 7C915041h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "bsearch" (+00000046h)
Address: 7C915233h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "bsearch" (+00000238h)
Address: 7C9105C8h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFreeHeap" (+0000018Bh)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 05123D8Eh, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05123D40h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7C9155C9h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlHashUnicodeString" (+00000164h)
Address: 7C915152h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "bsearch" (+00000157h)
Address: 7C91554Ah, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlHashUnicodeString" (+000000E5h)
Address: 7C9153F5h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFindActivationContextSectionString" (+000000DCh)
Address: 05123D40h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "strchr" (+00000117h)
Address: 7C910570h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFreeHeap" (+00000133h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 7E369951h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "IsChild" (+00000243h)
Address: 7C910833h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlAllocateHeap" (+0000025Fh)
Address: 050400F8h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "strchr" (+00000117h)
Address: 7C910838h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlAllocateHeap" (+00000264h)
Address: 7C910833h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlAllocateHeap" (+0000025Fh)
Address: 7E3699E4h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "IsChild" (+000002D6h)
Address: 7E369A12h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "IsChild" (+00000304h)
Address: 05040000h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 050400F8h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E36A303h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "ClientThreadSetup" (+000002F9h)
Address: 7E390457h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "DeregisterShellHookWindow" (+000001CFh)
Address: 7E369A18h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "IsChild" (+0000030Ah)
Address: 7E369A12h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "IsChild" (+00000304h)
Address: 7E36A31Ah, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "ClientThreadSetup" (+00000310h)
Address: 05040000h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E36A33Bh, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "ClientThreadSetup" (+00000331h)
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05040000h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05123D40h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05123D40h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05123D40h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05123D40h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E369D60h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "UnregisterClassW" (+000002BCh)
Address: 7E3C0270h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Address: 7E360000h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "strchr" (+00000117h)
Address: 7C910738h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlAllocateHeap" (+00000164h)
Address: 7C910732h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlAllocateHeap" (+0000015Eh)
Address: 7C911596h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "wcsncpy" (+00000B07h)
Address: 7C9106EBh, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlAllocateHeap" (+00000117h)
Address: 7C9105D4h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlAllocateHeap" (+00000000h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 7C910D5Ch, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "wcsncpy" (+000002CDh)
Address: 7C910E91h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "wcsncpy" (+00000402h)
Address: 7C910D5Ch, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "wcsncpy" (+000002CDh)
Address: 7C910E91h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "wcsncpy" (+00000402h)
Address: 7C9105C8h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFreeHeap" (+0000018Bh)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 7C9105C8h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFreeHeap" (+0000018Bh)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 7C910833h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlAllocateHeap" (+0000025Fh)
Address: 050400F8h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "strchr" (+00000117h)
Address: 7C910838h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlAllocateHeap" (+00000264h)
Address: 7E36FECCh, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "CreateWindowExW" (+000002A7h)
Address: 05040000h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05143A6Ch, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "strchr" (+00000117h)
Address: 7C9106F0h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlAllocateHeap" (+0000011Ch)
Address: 050E5FE0h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05123D40h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E36FC58h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "CreateWindowExW" (+00000033h)
Address: 05123D40h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05040000h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 050DD0A1h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05123D40h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05040000h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05083B44h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 051450B0h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05145098h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 0509F8C2h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05142954h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05122034h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 051236D0h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 0510FBC0h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 050A13C0h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05145098h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E390457h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "DeregisterShellHookWindow" (+000001CFh)
Address: 050DD3B6h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05145098h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E368734h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "GetDC" (+0000006Dh)
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E36D05Bh, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "EnumDisplayMonitors" (+000000F8h)
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E390457h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "DeregisterShellHookWindow" (+000001CFh)
Address: 7E368830h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "GetDC" (+00000169h)
Address: 7E36B4C0h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "DefWindowProcW" (+00000184h)
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E390457h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "DeregisterShellHookWindow" (+000001CFh)
Address: 7E36B4D0h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "DefWindowProcW" (+00000194h)
Address: 7E36F9FEh, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "CallNextHookEx" (+000001A3h)
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7C90EAE3h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "KiUserCallbackDispatcher" (+00000013h)
Address: 05040000h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 051251F0h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E36B473h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "DefWindowProcW" (+00000137h)
Address: 7E36FE13h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "CreateWindowExW" (+000001EEh)
Address: 7E36FDD9h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "CreateWindowExW" (+000001B4h)
Address: 05040000h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 051251F0h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E36FDFEh, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "CreateWindowExW" (+000001D9h)
Address: 774D1B20h, location: "ole32", loaded at 774D0000h - 7760D000h
Address: 05040000h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7C915041h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "bsearch" (+00000046h)
Address: 7C915233h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "bsearch" (+00000238h)
Address: 7C9105C8h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFreeHeap" (+0000018Bh)
Address: 7C910551h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFreeHeap" (+00000114h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 0512523Eh, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 051251F0h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7C9155C9h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlHashUnicodeString" (+00000164h)
Address: 7C915152h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "bsearch" (+00000157h)
Address: 7C91554Ah, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlHashUnicodeString" (+000000E5h)
Address: 7C9153F5h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFindActivationContextSectionString" (+000000DCh)
Address: 051251F0h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "strchr" (+00000117h)
Address: 7C910570h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFreeHeap" (+00000133h)
Address: 7C91056Dh, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlFreeHeap" (+00000130h)
Address: 7E369951h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "IsChild" (+00000243h)
Address: 7C910833h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlAllocateHeap" (+0000025Fh)
Address: 050400F8h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7C90EE18h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "strchr" (+00000117h)
Address: 7C910838h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlAllocateHeap" (+00000264h)
Address: 7C910833h, location: "ntdll", loaded at 7C900000h - 7C9B2000h
Symbol: "RtlAllocateHeap" (+0000025Fh)
Address: 7E3699E4h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "IsChild" (+000002D6h)
Address: 7E369A12h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "IsChild" (+00000304h)
Address: 05040000h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 050400F8h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E36A303h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "ClientThreadSetup" (+000002F9h)
Address: 7E390457h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "DeregisterShellHookWindow" (+000001CFh)
Address: 7E369A18h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "IsChild" (+0000030Ah)
Address: 7E369A12h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "IsChild" (+00000304h)
Address: 7E36A31Ah, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "ClientThreadSetup" (+00000310h)
Address: 05040000h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E36A33Bh, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "ClientThreadSetup" (+00000331h)
Address: 050DD220h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 05040000h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 051251F0h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 051251F0h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 051251F0h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 051251F0h, location: "foo_ui_columns", loaded at 05040000h - 05169000h
Address: 7E369D60h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Symbol: "UnregisterClassW" (+000002BCh)
Address: 7E3C0270h, location: "USER32", loaded at 7E360000h - 7E3F0000h
Address: 7E360000h, location: "USER32", loaded at 7E360000h - 7E3F0000h

Version info:
foobar2000 v0.9.5.2
UNICODE
Windows 5.1


Additional info:
Chronial's Coverflow 0.3.0  (foo_chronflow)
Album Art Panel 0.2.7.1  (foo_uie_albumart)
Tagger Panel Window 1.0.6 [Jan  2 2008 - 15:50:49]  (foo_cwb_hooks)
Cover Flow 0.19  (foo_bubble_coverflow)
foo_lyricsdb 0.0.7 beta 5  (foo_lyricsdb)
Winamp API Emulator 0.90  (foo_winamp_spam)
Graphical Browser rev015  (foo_uie_graphical_browser)
Standard Input Array 1.0  (foo_input_std)
freedb Tagger 0.5.2.1  (foo_freedb2)
Peakmeter Panel 0.0.3.1  (foo_uie_peakmeter)
Lyric Show Panels 0.3.1.1b8 DEV [Sep 16 2007 - 08:44:03]  (foo_uie_lyrics)
ReplayGain Scanner 2.0.3  (foo_rgscan)
WSH Panel (uie) 0.7.2  (foo_uie_wsh_panel)
Default User Interface 0.9.5  (foo_ui_std)
Album list panel 0.2.3 beta  (foo_uie_albumlist)
foo_managedWrapper 0.4  (foo_managedWrapper)
Panel Stack Splitter 0.3.4(alpha)  (foo_uie_panel_splitter)
Playlists Dropdown 0.6 alpha 4  (foo_uie_playlists_dropdown)
Standard DSP Array 1.0  (foo_dsp_std)
Channel Spectrum panel 0.17.2  (foo_uie_vis_channel_spectrum)
Audioscrobbler 2.3.1  (foo_audioscrobbler)
Album List 4.2  (foo_albumlist)
Playback Statistics 1.3.2  (foo_playcount)
Quick Search Toolbar 2.8l  (foo_uie_quicksearch)
CD Art Display Interface 2.0 beta 134  (foo_cdartdisplay)
Run services 0.3.4  (foo_run)
Track info panel 0.8  (foo_uie_trackinfo)
Converter 1.1  (foo_converter)
cwbowron's title format hooks 1.2.6 [Jan  2 2008 - 15:50:05]  (foo_cwb_hooks)
Track info panel mod 0.8.0 beta [Jan  5 2007 - 13:36:12]  (foo_uie_trackinfo_mod)
Play Count Mod 1.0.2  (foo_playcount_mod)
Panels UI 0.14.12 beta [Jul 18 2007 - 13:39:30]  (foo_ui_panels)
Playback Statistics Custom 1.4.3  (foo_playback_custom)
Seek Panel 0.1  (foo_uie_powerpanels)
CD Audio Decoder 2.1.2  (foo_cdda)
Volume Panel 0.1  (foo_uie_powerpanels)
foobar2000 core 0.9.5.2  (Core)
ELPlaylist 0.3.3.0(alpha)  (foo_uie_elplaylist)
Columns UI 0.3 beta 2 preview 11d  (foo_ui_columns)
Single Column Playlist Display 0.5.4 beta [Nov 24 2006 - 21:31:48]  (foo_uie_single_column_playlist)


Waiting for help...
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2008 Invision Power Services, Inc.