본문 바로가기
반응형

전체 글123

ERROR : Provisioning profile ‘*' can’t be found” Provisioning profile ‘*' can’t be found” 1. Organize -> Provisioning Profile -> 원하는 Provision의 Profile Identifier를 얻어오기 2. *..xcodeproj -> 마우스 오른쪽키 -> 패키지 내용 보기 3. project.pbxproj 열기 -> PROVISIONING_PROFILE 검색 -> 해당 컴파일버전에 맞는 프로비젼 검색하여 1의 값으로 수정 .. 예전엔 그냥 프로젝트를 새로 생성했었지.. ㅜ 2010. 7. 13.
ERROR : Code Sign error: Provisioning profile '*' specifies the Application Identifier '*' which doesn't match the current setting '*' 문제 ) Code Sign error: Provisioning profile '*' specifies the Application Identifier '*' which doesn't match the current setting '*' The executable was signed with invalid entitlements. The entitlements specified in your application's Code Signing Entitlements file do not match those specified in your provisioning profile. (0xE8008016). 해결방법 ) 1. File -> New File -> Code Signing -> Entitlements -.. 2010. 7. 13.
Struct Size struct SizeTest { char ch; int Data; } void main() { sizeof (SizeTest); } #pragma pack(1); 전치리기 처리를 하지않으면 8이 나옴 2009. 10. 12.
04. 프로세스 - CreateProcess BOOL CreateProcess함수를 이용하면 새로운 프로세스를 생성할 수 있다. BOOL CreateProcess( PCTSTR pszApplicationName, PSECURITY_ATTRIBUTES psaProcess, PSECURITY_ATTRIBUTES psaThread, BOOL bInheritHandles, DWORD fdwCreate, PVOID pvEnvironment, PCTSTR pszCurDir, PSTARTUPINFO psiStartInfo, PROCESS_INFORMATION ppiProcInfo); 스레드가 CreateProcess를 호출하면 시스템은 사용 카운트가 1인 프로세스 커널 오브젝트를 생성한다. 프로세스 커널 오브젝트는 프로세스 자체를 의미하는 것은 아니며, 운영체.. 2009. 8. 21.
반응형