reference (65) 썸네일형 리스트형 [NSIS] Install 영역과 Uninstall 영역 모두에서 호출 가능한 함수? 매크로? 기본 포맷 !macro _FuncName un Function ${un}_FuncName # 함수 정의 Pop $0 MessageBox MB_OK "_FuncName [$0]" Push "return $0 from _FuncName" FunctionEnd!macroend!insertmacro _FuncName ""!insertmacro _FuncName "un."!macro FuncName OUTPUT param Push "${param}" !ifndef __UNINSTALL__ Call _FuncName !else Call un._FuncName !endif Pop "${OUTPUT}"!macroend!define FuncName "!insertmacro FuncName"!macro _FuncName2.. Google C++ Style Guide https://google.github.io/styleguide/cppguide.html [C++] string 클래스 space 제거 (ltrim, rtrim, trim) // 앞에 있는 화이트 스페이스 문자 제거std::string& MOONG::StringTool::trim_left(std::string& input){ if(input.length() == 0) { return input; } size_t index = 0; for(size_t i = 0; i = 0; i--) { if(input.at(i) != ' ' && input.at(i) != '\t' && input.at(i) != '\n' && input.at(i) != '\r\n') { index = i + 1; break; } } input.erase(index); return input;}// 양쪽 끝의 화이트 스페이스 문자 제거std::string& MOONG::StringTool::t.. [MFC] 메시지 박스 윈도우 최상단에 출력 MessageBoxA(GetDesktopWindow(), text.c_str(), caption.c_str(), type | MB_SETFOREGROUND | MB_TOPMOST | MB_SYSTEMMODAL); https://github.com/MoongStory/WindowsOperatingSystem [NSIS] 실행되는(설치 파일) 자기 경로 얻어오기 System::Call 'kernel32::GetModuleFileNameA(i 0, t .R0, i 1024) i r1';$R0 will contain the installer filenameMessageBox MB_OK "$R0" [HTML] HTML5 문서의 기본 구조 [HTML] HTML5 태그 https://developer.mozilla.org/ko/docs/Web/HTML/Element [HTML] HTML5 태그를 지원하지 않는 브라우저 처리 https://github.com/aFarkas/html5shiv위 링크에서 js 파일을 다운받아서 와 같이 링크하여 사용 위 방법이 불가능할 경우 아래와 같이 임시로 사용header, hgroup, section, nav, article, footer{ display:block;} 또는 자바스크립트를 사용. 다음 스크립트를 태그 사이에 아래 코드 삽입. 이전 1 ··· 5 6 7 8 9 다음