Searched refs:wnd (Results 1 - 8 of 8) sorted by relevance

/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/
H A Dpasswd_dlg.c74 HWND wnd = GetActiveWindow(); local
76 switch(DialogBox(hInst,MAKEINTRESOURCE(IDD_PASSWD_DIALOG),wnd,pwd_dialog_proc))
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/libdes/src/
H A Dpasswd_dlg.c82 /* * Copyright (c) 1995, 1996, 1997, 1998 Kungliga Tekniska H�gskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Kungliga Tekniska * H�gskolan and its contributors. * * 4. Neither the name of the Institute nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ /* passwd_dlg.c - Dialog boxes for Windows95/NT * Author: J�rgen Karlsson - d93-jka@nada.kth.se * Date: June 1996 */ #ifdef HAVE_CONFIG_H #include <config.h> RCSID("$Id: passwd_dlg.c,v 1.4 2005/01/10 19:09:07 snsimon Exp $"); #endif #ifdef WIN32 /* Visual C++ 4.0 (Windows95/NT) */ #include <Windows.h> #include "passwd_dlg.h" #include "Resource.h" #define passwdBufSZ 64 char passwd[passwdBufSZ]; BOOL CALLBACK pwd_dialog_proc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam) { switch(uMsg) { case WM_COMMAND: switch(wParam) { case IDOK: if(!GetDlgItemText(hwndDlg,IDC_PASSWD_EDIT, passwd, passwdBufSZ)) EndDialog(hwndDlg, IDCANCEL); case IDCANCEL: EndDialog(hwndDlg, wParam); return TRUE; } } return FALSE; } /* return 0 if ok, 1 otherwise */ int pwd_dialog(char *buf, int size) { int i; HWND wnd = GetActiveWindow(); HANDLE hInst = GetModuleHandle("des"); switch(DialogBox(hInst,MAKEINTRESOURCE(IDD_PASSWD_DIALOG),wnd,pwd_dialog_proc)) { case IDOK: strcpy_truncate(buf, passwd, size); memset (passwd, 0, si (…)
1 /* local
/macosx-10.9.5/tcsh-65/tcsh/win32/
H A Dconsole.c226 SMALL_RECT wnd; local
237 wnd.Left = 0;//scrbuf.srWindow.Left ;
238 wnd.Right = scrbuf.srWindow.Right- scrbuf.srWindow.Left + 1;
239 wnd.Top = scrbuf.srWindow.Top;
240 wnd.Bottom = scrbuf.srWindow.Bottom;
242 SetConsoleWindowInfo(ghstdout,TRUE,&wnd);
246 SMALL_RECT wnd; local
252 wnd.Left = (where - scrbuf->srWindow.Right) + scrbuf->srWindow.Left ;
253 wnd.Right = where;
254 wnd
319 SMALL_RECT wnd; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/win/
H A DQTMovieGWorld.cpp379 LRESULT QTMovieGWorld::fullscreenWndProc(HWND wnd, UINT message, WPARAM wParam, LPARAM lParam) argument
381 QTMovieGWorld* movie = static_cast<QTMovieGWorld*>(GetPropW(wnd, fullscreenQTMovieGWorldPointerProp));
384 RemovePropW(wnd, fullscreenQTMovieGWorldPointerProp);
387 return DefWindowProc(wnd, message, wParam, lParam);
389 return movie->m_private->m_fullscreenClient->fullscreenClientWndProc(wnd, message, wParam, lParam);
425 HWND wnd = static_cast<HWND>(GetPortNativeWindow(m_private->m_fullscreenWindow)); local
426 SetPropW(wnd, fullscreenQTMovieGWorldPointerProp, static_cast<HANDLE>(this));
428 return wnd;
436 HWND wnd = static_cast<HWND>(GetPortNativeWindow(m_private->m_fullscreenWindow));
/macosx-10.9.5/apache-786.1/httpd/server/mpm/winnt/
H A DWin9xConHook.c107 static BOOL CALLBACK EnumttyWindow(HWND wnd, LPARAM retwnd);
380 DbgPrintf("A proc %8.8x created %8.8x %s for tty wnd %8.8x\r\n",
508 static BOOL CALLBACK EnumttyWindow(HWND wnd, LPARAM retwnd) argument
511 if (GetClassName(wnd, tmp, sizeof(tmp)) && !strcmp(tmp, "tty"))
514 GetWindowThreadProcessId(wnd, &wndproc);
516 *((HWND*)retwnd) = wnd;
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DFullscreenVideoController.cpp385 LRESULT FullscreenVideoController::fullscreenClientWndProc(HWND wnd, UINT message, WPARAM wParam, LPARAM lParam) argument
405 return DefWindowProc(wnd, message, wParam, lParam);
560 LRESULT FullscreenVideoController::hudWndProc(HWND wnd, UINT message, WPARAM wParam, LPARAM lParam) argument
562 LONG_PTR longPtr = GetWindowLongPtr(wnd, 0);
565 return DefWindowProc(wnd, message, wParam, lParam);
585 return DefWindowProc(wnd, message, wParam, lParam);
/macosx-10.9.5/iodbc-42.5/iodbc/iodbcadm/gtk/
H A Dgui.h209 LPSTR create_keyval (HWND wnd, LPCSTR attrs, BOOL *verify_conn);
/macosx-10.9.5/emacs-92/emacs/leim/quail/
H A Dhanja-jis.el383 ("wnd" "$B=0=ECfCg(B")

Completed in 192 milliseconds