- Timestamp:
- Dec 13, 2001, 1:24:42 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/inituser32.cpp
r7403 r7622 1 /* $Id: inituser32.cpp,v 1. 7 2001-11-20 09:53:56sandervl Exp $ */1 /* $Id: inituser32.cpp,v 1.8 2001-12-13 12:24:42 sandervl Exp $ */ 2 2 /* 3 3 * USER32 DLL entry point … … 71 71 /* targetted window, but no more harmful things will happen. */ 72 72 /**************************************************************/ 73 #define PMKBDHK_MODULE "PMKBDHK" 73 static char PMKBDHK_MODULE[16] = "PMKBDHK"; 74 74 #define PMKBDHK_HOOK_INIT "hookInit" 75 75 #define PMKBDHK_HOOK_TERM "hookKill" … … 84 84 extern HAB hab; 85 85 86 //****************************************************************************** 87 //****************************************************************************** 88 void WIN32API SetCustomPMHookDll(LPSTR pszKbdDllName) 89 { 90 strcpy(PMKBDHK_MODULE, pszKbdDllName); 91 } 92 //****************************************************************************** 93 //****************************************************************************** 86 94 void pmkbdhk_initialize(HAB _hab) 87 95 { … … 137 145 } 138 146 } 139 147 //****************************************************************************** 148 //****************************************************************************** 140 149 void pmkbdhk_terminate(void) 141 150 { … … 162 171 } 163 172 } 164 165 166 173 /****************************************************************************/ 167 174 /* _DLL_InitTerm is the function that gets called by the operating system */ … … 234 241 return 1UL; 235 242 } 236 243 //****************************************************************************** 244 //****************************************************************************** 237 245 void APIENTRY cleanupUser32(ULONG ulReason) 238 246 { … … 256 264 dprintf(("user32 exit done\n")); 257 265 } 258 266 //****************************************************************************** 267 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.