Changeset 4588 for trunk/src/kernel32/hmdevice.cpp
- Timestamp:
- Nov 14, 2000, 3:27:04 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/hmdevice.cpp
r4285 r4588 1 /* $Id: hmdevice.cpp,v 1.2 3 2000-09-20 21:32:52 hughExp $ */1 /* $Id: hmdevice.cpp,v 1.24 2000-11-14 14:27:00 sandervl Exp $ */ 2 2 3 3 /* … … 20 20 #include <odin.h> 21 21 #include <os2win.h> 22 #include <string.h> 22 23 #include <misc.h> 23 24 #include "HandleManager.h" … … 70 71 } 71 72 73 74 /***************************************************************************** 75 * Name : HMDeviceHandler::FindDevice 76 * Purpose : Checks if lpDeviceName belongs to this device class 77 * Parameters: LPCSTR lpClassDevName 78 * LPCSTR lpDeviceName 79 * int namelength 80 * Variables : 81 * Result : 82 * Remark : 83 * Status : 84 * 85 * Author : SvL 86 *****************************************************************************/ 87 BOOL HMDeviceHandler::FindDevice(LPCSTR lpClassDevName, LPCSTR lpDeviceName, int namelength) 88 { 89 if(stricmp(lpClassDevName, lpDeviceName) == 0) { 90 return TRUE; 91 } 92 return FALSE; 93 } 72 94 73 95 /*****************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.