home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat197.c */
- /*------------------------------------------------------------------*/
- #include <io.h>
- #include <fcntl.h>
- #include <sys\stat.h>
- #include <process.h>
- #include <share.h>
- #include <stdio.h>
-
- void main()
- {
- int handle, status;
- long length;
-
- handle = sopen("c:\\autoexec.bak",O_RDONLY,SH_DENYNO,S_IREAD);
-
- if (!handle)
- {
- printf("sopen() ¿τ╝╞░⌡ªµÑó▒╤\n");
- exit(1);
- }
-
- length = filelength(handle);
- /* ┬Ω⌐w╛π¡╙└╔«╫ */
- status = lock(handle,0L,length);
-
- if (status == 0)
- printf("┬Ω⌐wª¿Ñ\\\n");
- else
- printf("┬Ω⌐wÑó▒╤\n");
-
- /* ▒N╛π¡╙└╔«╫╕╤┬Ω */
- status = unlock(handle,0L,length);
-
- if (status == 0)
- printf("╕╤┬Ωª¿Ñ\\\n");
- else
- printf("╕╤┬ΩÑó▒╤\n");
-
- close(handle);
- }