- lumenFC 축구 동호회
- 마샤블
- 웍스프레소
- 소셜@나눔<소셜미디어나눔연구소>
- 리버스코어
- LAIN
- LAIN 이사한 블로그
- TeamCR@K
- Sunnyday
- 보안 걱정이
- 리버싱 학습
- securityfirst_jo
- Practical Security Blog
- 세상, 그 유쾌한 전장
- 악성코드관련블로그
- Back to the Mac
- 패킷분석입문
- PacketInside / 네트워크 패킷 분석 블로그
- 침해사고분석 :: 네이버 블로그
- 소프트웨어 기술자경력관리시스템
- JK.Moon
- 자바 온라인학습
- Ezbeat의 도서관
- Dreams of a Final Journey
- IT eBooks - Free Download - Bi…
- Index of /madchat/coding/rever…
- Security Insight
- Reversing war game
- 고길고기
- clamav
- zerowine
- FORENSIC-PROOOF
- jquery 예제
- 조대협의블로그
- 국가과학기술인력개발원 교육포털 사이트
- 빅데이터, splunk
- 지식을 연주하는 사람
- malware analysis system
- 건국대토익스피킹
- 소프트웨어개발 및 협업도구
kisoo
CmRegisterCallback routine 본문
The CmRegisterCallback routine is obsolete for Windows Vista and later operating system versions. Use CmRegisterCallbackEx instead.
The CmRegisterCallback routine registers a RegistryCallback routine.
Syntax
NTSTATUS CmRegisterCallback( __in PEX_CALLBACK_FUNCTION Function, __in_opt PVOID Context, __out PLARGE_INTEGER Cookie );
Parameters
- Function [in]
A pointer to the RegistryCallback routine to register.
- Context [in, optional]
A driver-defined value that the configuration manager will pass as the CallbackContext parameter to the RegistryCallback routine
- Cookie [out]
A pointer to a LARGE_INTEGER variable that receives the value that identifies the callback routine. When you unregister the callback routine, pass this value as the Cookie parameter to CmUnRegisterCallback.
Return value
CmRegisterCallback returns STATUS_SUCCESS if the operation succeeds or the appropriate NTSTATUS error code if it fails.
Remarks
The CmRegisterCallback routine is available on Windows XP and later operating system versions. For Windows Vista and later operating system versions, you should use CmRegisterCallbackEx instead.
A driver calls CmRegisterCallback to register a RegistryCallback routine, which is called every time a thread performs an operation on the registry.
Call CmUnRegisterCallback to unregister a callback routine that CmRegisterCallback registered.
For more information about CmRegisterCallback and filtering registry operations, see Filtering Registry Calls.
Requirements
Version | Available in Windows XP and later versions of Windows. |
---|---|
Header |
|
Library |
|
IRQL | <=APC_LEVEL |
See also
http://msdn.microsoft.com/en-us/library/windows/hardware/ff541918(v=vs.85).aspx