Source code of Windows XP (NT5)
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.

15 lines
384 B

  1. #define MAX_PRN_PAGES 10
  2. //
  3. // This data structure is privately shared with
  4. // prtprop.c in SHELLDLL
  5. // prt16.c in LIBRARY
  6. //
  7. typedef struct // apg
  8. {
  9. DWORD cpages;
  10. HPROPSHEETPAGE ahpage[MAX_PRN_PAGES];
  11. } PAGEARRAY, FAR * LPPAGEARRAY;
  12. // thunk from shell232.dll -> shell.dll
  13. VOID WINAPI CallAddPropSheetPages16(LPFNADDPROPSHEETPAGES lpfn16, LPVOID hdrop, LPPAGEARRAY papg);