I am making a small program with C and Windows API. I am trying to integrate file handling in it. I am a beginner and the biggest problem I have is that I can not figure out where to place the file handling code. I have made this snippet as of now:
static HWND hwnduser;
static HWND hwndpass;
int ulen, plen; // Username and Password Length
BOOL file_status = 0;
TCHAR username[20]; // Entered by user
TCHAR password[20]; // Entered by user
LPCSTR file_name = "users.qdb";
DWORD users_read = 0;
DWORD *pt_users_read;
char users_to_read[20];
pt_users_read = &users_read;
hwnd_f_users = CreateFile(
file_name,
GENERIC_READ,
0,
NULL,
OPEN_ALWAYS,
FILE_ATTRIBUTE_NORMAL,
NULL
);
I tried to place it inside WinMain after window is created, but that did not work. I then placed it inside the CALLBACK and it works but isn't it being placed inside a loop then? Something that is not good in case I have to read file many times.
Basically, here's what I am trying to do with this file: Read first line. If its first 6 bytes are #USRS#, read on.
Now, read every line and store the lines in users, passwords and user_id arrays alternatively from where I will check if user has entered right code or not. So, I have to open file once and after that, read it line by line and store values in array. Once user enters login details, check for right combination.
So, where do I place it?
And if you know of any tutorial about file handling, please let me know!