Changeset 3819 for trunk/src/kernel32/hmfile.cpp
- Timestamp:
- Jul 12, 2000, 8:21:45 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/hmfile.cpp
r3804 r3819 1 /* $Id: hmfile.cpp,v 1.1 0 2000-07-06 21:18:42sandervl Exp $ */1 /* $Id: hmfile.cpp,v 1.11 2000-07-12 18:21:43 sandervl Exp $ */ 2 2 3 3 /* … … 70 70 pHMHandleDataTemplate)); 71 71 72 if 73 74 4) == 0)72 if(strncmp(lpFileName, // "support" for local unc names 73 "\\\\.\\", 74 4) == 0) 75 75 { 76 lpFileName+=4; 77 } 76 // check the named pipes 77 if (strnicmp("\\\\.\\PIPE",lpFileName,8)==0) 78 lpFileName+=3; 79 else 80 lpFileName+=4; 81 } 82 78 83 79 84 // create from template
Note:
See TracChangeset
for help on using the changeset viewer.