Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
423 B

  1. #ifndef __PAGEINFO_H__
  2. #define __PAGEINFO_H__
  3. typedef HWND (CALLBACK *PAGECREATEINSTANCEPROC)(HWND hwndParent);
  4. //-------------------------------------------------------------------------//
  5. typedef struct
  6. {
  7. PAGECREATEINSTANCEPROC pfnCreateInstance;
  8. UINT nIDSTitle;
  9. } PAGEINFO;
  10. extern const int g_cPageInfo;
  11. extern const PAGEINFO g_rgPageInfo[];
  12. #endif __PAGEINFO_H__