'link/window general'에 해당되는 글 71건
- 2013.10.23 WMI
- 2013.10.15 DLL Inject
- 2013.10.14 Determine whether an application is console or GUI
- 2013.09.23 Implement event sink by ATL
- 2013.09.17 Development Event Log
- 2013.09.16 Development Windows Service
- 2013.08.12 Get IE Tab Window Handle
- 2013.01.28 양방향 텍스트 인식
- 2012.04.21 Window Features
- 2011.10.11 Window Class
WMI
DLL Inject
NtCreateThreadEx for Vista & Windwos7
http://securityxploded.com/ntcreatethreadex.php
method of DLL Injection
DLL Injection on Wow64
http://www.corsix.org/content/dll-injection-and-wow64
Example of using NtCreateThreadEx
http://noobys-journey.blogspot.kr/2010/11/injecting-shellcode-into-xpvista7.html
Determine whether an application is console or GUI
using PE FILE Header
http://support.microsoft.com/kb/90493/en-us?fr=1
alternative
using SHGetFileInfo function
http://msdn.microsoft.com/en-us/library/windows/desktop/bb762179(v=vs.85).aspx
using GetBinaryType function
http://msdn.microsoft.com/en-us/library/windows/desktop/aa364819(v=vs.85).aspx
Implement event sink by ATL
Implement dispinterface and dual interface event sink by ATL
http://msdn.microsoft.com/en-us/library/windows/desktop/dd695280(v=vs.85).aspx
Development Event Log
Development Windows Service
Simple Service in C++
http://www.codeproject.com/Articles/499465/Simple-Windows-Service-in-Cplusplus
A basic Windows service in c++ by MS
http://code.msdn.microsoft.com/windowsdesktop/CppWindowsService-cacf4948
Interaction between services and applications in Windows Vista
http://www.codeproject.com/Articles/36581/Interaction-between-services-and-applications-at-u
Launch your application in Vista under the local system accoun without the UAC popup
http://www.codeproject.com/Articles/18367/Launch-your-application-in-Vista-under-the-local-s
Get IE Tab Window Handle
Get IE Tab Window Handle
http://social.msdn.microsoft.com/Forums/ie/ja-JP/df0fe7f2-0153-47d9-b18f-266d57ab7909/problems-with-modal-dialogs-and-messageboxes
#include <shlguid.h> IServiceProvider* pServiceProvider = NULL; if (SUCCEEDED(pWebBrowser2->QueryInterface( IID_IServiceProvider, (void**)&pServiceProvider))) { IOleWindow* pWindow = NULL; if (SUCCEEDED(pServiceProvider->QueryService( SID_SShellBrowser, IID_IOleWindow, (void**)&pWindow))) { HWND hwndBrowser = NULL; if (SUCCEEDED(pWindow->GetWindow(&hwndBrowser))) { // hwndBrowser is the handle of TabWindowClass } pWindow->Release(); } pServiceProvider->Release(); }
양방향 텍스트 인식
http://msdn.microsoft.com/ko-kr/goglobal/bb688137.aspx
Windows OS에서 LTR , RTL 문자를 지원하기 위한 guide
. uniscribe 관련 guide
Window Features
작업 중 CreateWindow 함수의 인자 중 parentWindow가 언제나 실제적으로 Parent 관계가 되지 않는다는 것을 알았다
http://msdn.microsoft.com/en-us/library/windows/desktop/ms632599(v=vs.85).aspx
위 링크를 보면 기본적인 window 에 대해서 다시 한번 정립할 수 있다.
Window Class
http://hyper.sunjapan.com.cn/~hz/win32/classy32.htm