Home
last modified time | relevance | path

Searched refs:lpPathBuffer (Results 1 – 6 of 6) sorted by relevance

/dports/finance/grisbi/grisbi-2.0.5/win32/
H A Dwin32gtkutils.c88 LPCTSTR lpPathBuffer = NULL; in win32_make_sure_the_gtk2_dlls_path_is_in_PATH() local
129 … if ( (lpPathBuffer = (LPCTSTR)malloc( sizeof(TCHAR) * (nPathBufferSize + dwKeyValSize + 1 + 1)))) in win32_make_sure_the_gtk2_dlls_path_is_in_PATH()
133 TCHAR* ptrEndOfPathString = (TCHAR*)lpPathBuffer+dwKeyValSize; in win32_make_sure_the_gtk2_dlls_path_is_in_PATH()
135 strcpy((char*)lpPathBuffer,(char*)pKeyValBuffer); in win32_make_sure_the_gtk2_dlls_path_is_in_PATH()
143 if ((dwStatus == NO_ERROR)&&(!SetEnvironmentVariable((LPCTSTR)("PATH"),lpPathBuffer))) in win32_make_sure_the_gtk2_dlls_path_is_in_PATH()
155 if (lpPathBuffer) in win32_make_sure_the_gtk2_dlls_path_is_in_PATH()
157 free((void*)lpPathBuffer); in win32_make_sure_the_gtk2_dlls_path_is_in_PATH()
158 lpPathBuffer = NULL; in win32_make_sure_the_gtk2_dlls_path_is_in_PATH()
/dports/science/libkml/libkml-1.3.0/src/kml/base/
H A Dfile_win32.cc81 TCHAR lpPathBuffer[BUFSIZE]; variable
91 dwRetVal = ::GetTempPath(dwBufSize, lpPathBuffer); in CreateNewTempFile()
96 uRetVal = ::GetTempFileName(lpPathBuffer, TEXT("libkml"), 0, szTempName); in CreateNewTempFile()
/dports/sysutils/boxbackup-devel/boxbackup-0.11_trunk_2979/lib/common/
H A DUtils.cpp406 char lpPathBuffer[1024]; in BoxGetTemporaryDirectoryName() local
407 DWORD dwBufSize = sizeof(lpPathBuffer); in BoxGetTemporaryDirectoryName()
411 lpPathBuffer); // buffer for path in BoxGetTemporaryDirectoryName()
417 return std::string(lpPathBuffer); in BoxGetTemporaryDirectoryName()
/dports/graphics/enblend/enblend-enfuse-4.2/src/
H A Dintrospection.cc77 char lpPathBuffer[MAX_PATH]; in printVersion() local
78 const DWORD dwRetVal = GetTempPath(MAX_PATH, lpPathBuffer); in printVersion()
81 std::cout << " - cache file located in \"" << lpPathBuffer << "\"\n"; in printVersion()
/dports/games/instead/instead-3.4.1/src/
H A Dwinrt.c124 extern void getAppTempDir(char *lpPathBuffer);
/dports/net/freeswitch/freeswitch-1.10.3.-release/src/
H A Dswitch_core.c621 char lpPathBuffer[BUFSIZE]; in switch_core_set_globals() local
850 GetTempPath(dwBufSize, lpPathBuffer); in switch_core_set_globals()
851 lpPathBuffer[strlen(lpPathBuffer)-1] = 0; in switch_core_set_globals()
852 tmp = switch_string_replace(lpPathBuffer, "\\", "/"); in switch_core_set_globals()
853 strcpy(lpPathBuffer, tmp); in switch_core_set_globals()
855 switch_snprintf(SWITCH_GLOBAL_dirs.temp_dir, BUFSIZE, "%s", lpPathBuffer); in switch_core_set_globals()