home *** CD-ROM | disk | FTP | other *** search
- /*
- * OS/2 Lan Manager DOS and NET calls for
- * using named pipes version of c-tree server
- *
- *
- * --------------------------------------------------------------------
- * This could be used instead of ctnetnam.c
- * if ONLY local use of Named Pipes
- * --------------------------------------------------------------------
- *
- * This program is the CONFIDENTIAL and PROPRIETARY property
- * of FairCom(R) Corporation. Any unauthorized use, reproduction or
- * transfer of this program is strictly prohibited.
- *
- * Copyright (c) 1987, 1988, 1989 FairCom Corporation
- * (Subject to limited distribution and
- * restricted disclosure only.)
- * *** ALL RIGHTS RESERVED ***
- *
- * 4006 West Broadway
- * Columbia, MO 65203
- *
- *
- * c-tree(R) Version 4.3
- * Release C
- * February 7, 1989 17:30
- *
- */
-
- #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
-
- #include <net\netcons.h>
-
- #include "ctpipes.h"
-
- static char username[UNLEN+1];
-
- char* get_net_user_name()
- {
- strcpy (username,"USER");
- return (username);
-
- } /* end get_net_user_name */
-
-
- char* get_net_computer_name()
- {
-
- strcpy (username,"LOKALT");
- return (username);
-
- } /* end get_net_computer_name */
-
- char *konvert_drive_to_local(char *filename)
- {
- return 0L;
- }
-
-
-