Guest User

Untitled

a guest
May 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. OPENFILENAME ofn = { sizeof ofn };
  2. char file[1024];
  3. ofn.hwndOwner = NULL;
  4. ofn.lpstrFile = file;
  5. ofn.nMaxFile = sizeof(file);
  6. ofn.lpstrFile[0] = '';
  7. GetOpenFileName(&ofn);
Add Comment
Please, Sign In to add comment