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.

23 lines
261 B

  1. #ifndef OFN_H
  2. #define OFN_H
  3. #pragma pack(push, 8)
  4. class COpenFileName
  5. {
  6. public:
  7. COpenFileName(BOOL bOpenFileDialog);
  8. ~COpenFileName();
  9. int DoModal();
  10. BOOL m_bOpenFileDialog;
  11. OPENFILENAME *m_pofn;
  12. };
  13. #pragma pack(pop)
  14. #endif //OFN_H