shell32: Add menu bar to Control Panel.
diff --git a/dlls/shell32/cpanel.h b/dlls/shell32/cpanel.h
index 05923f1..22f94d7 100644
--- a/dlls/shell32/cpanel.h
+++ b/dlls/shell32/cpanel.h
@@ -1,6 +1,7 @@
 /* Control Panel management
  *
  * Copyright 2001 Eric Pouech
+ * Copyright 2008 Owen Rudge
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -38,8 +39,14 @@
     unsigned            status;
     CPlApplet*		clkApplet;
     unsigned            clkSP;
+    unsigned total_subprogs;
 } CPanel;
 
+/* structure to reference an individual control panel item */
+typedef struct CPlItem {
+    CPlApplet *applet;
+    unsigned id;
+} CPlItem;
 
 CPlApplet* Control_LoadApplet(HWND hWnd, LPCWSTR cmd, CPanel* panel);
 CPlApplet* Control_UnloadApplet(CPlApplet* applet);