본문 바로가기

개발, IT185

맥북프로 부트캠프 설치법 이번에 구매한 맥북프로..근데 윈도우 개발자 ㅋㅋㅋ 부트캠프로 윈도우 설치하는법을 찾다가 스크랩 해놉니다. http://kimsungjin.tistory.com/133http://kimsungjin.tistory.com/135 2018. 5. 15.
FFMPEG를 이용해서 화면 녹화하기 - 윈도우 편 FFMPEG를 이용하면 별다른 프로그램 없이도 화면을 녹화할 수 있다. FFMPEG 설치방법은 아래의 링크를 참고 하길 바란다. FFMPEG 설치하기 - 윈도우 편FFMPEG라는 오픈 소스 멀티미디어 플랫폼을 설치하는 방법에 대해서 알아볼 것이다. 1. 다운로드 아...blog.naver.com 녹화하는 방법은 어렵지 않다. Windows PowerShell을 열어 아래의 명령을 실행하면 된다. ffmpeg -y -rtbufsize 100M -f gdigrab -framerate 30 -probesize 10M -draw_mouse 1 -i desktop -c:v libx264 -r 30 -preset ultrafast -tune zerolatency -crf 25 -pix_fmt yuv420p "out.. 2018. 3. 27.
엑셀 버전 정보 Excel 95 (v7.0) Excel 97 (v8.0) Excel 2000 (v9.0) Excel 2002 (v10.0) Excel 2003 (v11.0) Excel 2007 (v12.0) Excel 2010 (v14.0) Excel 2013 (v15.0) 2018. 3. 21.
C++ <-> C# 타입 정보(Unmanaged to Managed type translation table) C++을 이용하여 만든 DLL을 C#에서 사용하려다 보니, 함수 매개변수를 C#에 맞게 변환하여 써야하는데 헷갈려서 정리함 ㅎ Unmanaged to Managed type translation table C/C++C#HANDLE, LPDWORD, LPVOID, void*IntPtrLPCTSTR, LPCTSTR, LPSTR, char*, const char*, Wchar_t*, LPWSTRString [in], StringBuilder [in, out]DWORD, unsigned long, UlongUInt32, [MarshalAs(UnmanagedType.U4)]boolboolLP[In] ref SIZE_TuintLPDWORDout uintLPTSTR[Out] StringBuilderPULARGE_IN.. 2018. 3. 19.