home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat109.c */
- /*------------------------------------------------------------------*/
- #include <io.h>
- #include <fcntl.h>
- #include <sys\stat.h>
- #include <process.h>
- #include <share.h>
- #include <stdio.h>
-
- void main()
- {
- int handle, lock_stat;
- long size;
-
- /* Ñ▓╢╖Ѳ╕ⁿñJ DOS ñº share.exe */
- handle = sopen("c:\\config.sys",
- O_RDONLY,SH_DENYNO,S_IREAD);
-
- if (!handle)
- {
- printf("sopen() ¿τ╝╞╢}└╔Ñó▒╤\n");
- exit(1);
- }
-
- size = filelength(handle);
- lock_stat = locking(handle,0L,size/2);
-
- if (lock_stat == 0)
- printf("ª¿Ñ\ªa┬Ω⌐w\n");
- else
- printf("┬Ω⌐wÑó▒╤\n");
-
- lock_stat = unlock(handle,0L,size/2);
-
- if (lock_stat == 0)
- printf("ª¿Ñ\ªa╕╤┬Ω\n");
- else
- printf("╕╤┬ΩÑó▒╤\n");
-
- close(handle);
- }