Home > ソフトウェア > Nelumbo > Nelumbo172.zip > Src > Function.h
//Funciton.h /*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# Nelumbo Ver.1.72 Coded by x@rgs This code is released under NYSL Version 0.9982 See NYSL_withfaq.TXT for further details. Nelumboはクリックひとつでパスワード「*****」を表示&コピーするソフトウェアです。 #*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*/ #ifndef FUNCTION_H #define FUNCTION_H #ifdef __cplusplus extern "C"{ #endif //現在のカーソルの位置からコントロールのハンドルを取得 HWND ControlFromPoint(); //エディットコントロールであるか否か bool IsEditControl(HWND hWnd); //パスワードマスクが有効なエディットコントロールかどうか bool IsPasswordmaskEditControl(HWND hWnd); //文字列をクリップボードにコピー bool SetClipboardText(HWND hWnd,const TCHAR* pszText,int iLength); //ウインドウをフォアグラウンドに持ってくる bool SetForegroundWindowEx(HWND hWnd); #ifdef __cplusplus } #endif #endif //FUNCTION_H
Home > ソフトウェア > Nelumbo > Nelumbo172.zip > Src > Function.h