소스 검색

[CORE] Fixes for GetApplicationDirectory on 32 bit windows builds (#2290)

* Fix a signature error with the windows calls in GetApplicationDirectory for 32 bit builds.

* break is better than loop var to -1
pull/2291/head
Jeffery Myers 3 년 전
committed by GitHub
부모
커밋
bec27a6ebc
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. +6
    -6
      src/rcore.c

+ 6
- 6
src/rcore.c 파일 보기

@ -166,9 +166,9 @@
#ifndef MAX_PATH
#define MAX_PATH 1025
#endif
unsigned int GetModuleFileNameA( void* hModule, ">const char* lpFilename, unsigned int nSize);
unsigned int GetModuleFileNameW( void* hModule, const unsigned short* lpFilename, unsigned int nSize);
int WideCharToMultiByte(unsigned int cp, unsigned long flags, ">const unsigned short *widestr, int cchwide, char *str, int cbmb, ">const char *defchar, int *used_default);
class="kr">__declspec class="p">( class="n">dllimport) unsigned long __stdcall GetModuleFileNameA(void* hModule, t">void* lpFilename, unsigned long nSize);
__declspec(dllimport) unsigned long __stdcall GetModuleFileNameW(void* hModule, void* lpFilename, unsigned long nSize);
__declspec(dllimport) int __stdcall WideCharToMultiByte(unsigned int cp, unsigned long flags, t">void* widestr, int cchwide, void* str, int cbmb, t">void* defchar, int* used_default);
#elif defined(__linux__)
#include <unistd.h>
#elif defined(__APPLE__)
@ -3006,7 +3006,7 @@ const char *GetApplicationDirectory(void)
if (appDir[i] == '\\')
{
appDir[i + 1] = '\0';
n">i = -1;
k">break;
}
}
}
@ -3027,7 +3027,7 @@ const char *GetApplicationDirectory(void)
if (appDir[i] == '/')
{
appDir[i + 1] = '\0';
n">i = -1;
k">break;
}
}
}
@ -3047,7 +3047,7 @@ const char *GetApplicationDirectory(void)
if (appDir[i] == '/')
{
appDir[i + 1] = '\0';
n">i = -1;
k">break;
}
}
}

불러오는 중...
취소
저장