Is there any way to get a list of the system-wide keyboard shortcuts currently in use?

Unfortunately there is no centralised, administrative way to manage or discover global hotkeys in Windows. When an application sets itself a global hotkey, it simply tells Windows it wants to listen to all keyboard events and filters based on what it wants to hear about once Windows tells it.

In other words:

  1. You enable global hotkeys in an application (such as Winamp)
  2. Winamp tells Windows that it wants to listen to system-wide keyboard events via the Windows APIs (this is simplified, there are some keyboard events that are still filtered away from user programs, some applications have to install filters to get more detail)
  3. When a keyboard event happens (a key is pushed), Windows fires a message to the application saying "a key was pressed, here's the details"
  4. The application then looks at the information given by Windows which typically includes the key pushed and any modifiers (such as shift, alt, ctrl, Windows key)
  5. Depending on what the application is interested and what key was pressed, the application will perform some action (eg, pause the song) or otherwise give back control back to Windows. Ie, if the key combination that the application was interested in was pressed, it will do the relevant action.

Due to this process and it being up to the application to handle global key presses, you can see why there is no central administration or control for this.

My only advice could be to use something like ProcMon or Process Explorer to watch what activity happens when you press the key combination that you're interested in.