Subversion Repositories Kolibri OS

Rev

Rev 7043 | Rev 7788 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. struct od_filter
  2.  {
  3.         dword size; //size = len(#ext) + sizeof(dword)
  4.         char ext[16];
  5.  };
  6.  
  7.  
  8. proc_info pr_inf;
  9. char communication_area_name[] = "FFFFFFFF_open_dialog";
  10. char opendir_path[3072];
  11. char open_dialog_path[] = "/rd/1/File managers/opendial";
  12. char openfile_path[4096];
  13. char filename_area[1024];
  14.  
  15.  
  16. opendialog o_dialog = {
  17.         0,
  18.         #pr_inf,
  19.         #communication_area_name,
  20.         0,
  21.         #opendir_path,
  22.         #default_dir,
  23.         #open_dialog_path,
  24.         #draw_window,
  25.         0,
  26.         #openfile_path,
  27.         #filename_area,
  28.         #filter2,
  29.  
  30.         420,
  31.         200,
  32.  
  33.         320,
  34.         120
  35. };
  36.