Advertisement
Riremito

Untitled

Feb 22nd, 2015
477
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | None | 0 0
  1. HWND _stdcall CWEx(DWORD dwExStyle, LPCWSTR lpClassName, LPCWSTR lpWindowName, DWORD dwStyle, int x, int y, int nWidth, int nHeight, HWND hWndParent, HMENU hMenu, HINSTANCE hInstance, LPVOID lpParam){
  2.  
  3.  
  4.     if(wcscmp(lpClassName, L"XXXX") == 0 && wcscmp(lpWindowName, L"YYYY") == 0){
  5.         hWndUW = CreateWindowExW(dwExStyle, lpClassName, lpWindowName, dwStyle, x, y, nWidth, nHeight, hWndParent, hMenu, hInstance, lpParam);
  6.         return hWndUW;
  7.     }
  8.  
  9.     return hWnd;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement