Searched refs:LPCWSTR (Results 1 - 25 of 82) sorted by relevance

1234

/macosx-10.9.5/iodbc-42.5/iodbc/include/
H A Dodbcinst.h238 LPCWSTR lpszDriver,
239 LPCWSTR lpszPathIn,
284 LPCWSTR lpszTranslator,
285 LPCWSTR lpszPathIn,
303 LPCWSTR lpszFileName,
304 LPCWSTR lpszAppName,
305 LPCWSTR lpszKeyName,
319 LPCWSTR lpszFileName,
320 LPCWSTR lpszAppName,
321 LPCWSTR lpszKeyNam
[all...]
H A Diodbcunix.h133 typedef const wchar_t * LPCWSTR; typedef
/macosx-10.9.5/iodbc-42.5/iodbc/iodbcadm/
H A Derror.c130 LPCWSTR szDSN,
131 LPCWSTR szText)
153 LPCWSTR szDSN,
154 LPCWSTR szText)
173 LPCWSTR szDSN,
174 LPCWSTR szText)
H A Dgui.h96 BOOL create_confirmw (HWND hwnd, LPCWSTR dsn, LPCWSTR text);
109 void create_errorw (HWND hwnd, LPCWSTR dsn, LPCWSTR text, LPCWSTR errmsg);
111 void create_messagew (HWND hwnd, LPCWSTR dsn, LPCWSTR text);
H A Diodbcadm.h107 void SQL_API _iodbcdm_errorboxw (HWND hwnd, LPCWSTR szDSN, LPCWSTR szText);
109 void SQL_API _iodbcdm_messageboxw (HWND hwnd, LPCWSTR szDSN, LPCWSTR szText);
111 BOOL SQL_API _iodbcdm_confirmboxw (HWND hwnd, LPCWSTR szDSN, LPCWSTR szText);
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebKitGraphics.h37 typedef __nullterminated const WCHAR* LPCWSTR; typedef
38 typedef LPCWSTR LPCTSTR;
H A DWebKitSystemBits.cpp48 BOOL result = GetDiskFreeSpaceExW((LPCWSTR)path.charactersWithNullTermination(), &freeBytesToCaller, 0, 0);
H A DWebActionPropertyBag.cpp96 static bool isEqual(LPCWSTR s1, LPCWSTR s2)
/macosx-10.9.5/iodbc-42.5/iodbc/iodbcinst/
H A DSQLInstallODBC.c119 SQLInstallODBCW (HWND hwndParent, LPCWSTR lpszInfFile, LPCWSTR lpszSrcPath,
120 LPCWSTR lpszDrivers)
H A DSQLWritePrivateProfileString.c227 SQLWritePrivateProfileStringW (LPCWSTR lpszSection, LPCWSTR lpszEntry,
228 LPCWSTR lpszString, LPCWSTR lpszFilename)
286 SQLSetKeywordValueW (LPCWSTR lpszSection,
287 LPCWSTR lpszEntry, LPWSTR lpszString, int cbString)
H A DSQLWriteFileDSN.c116 SQLWriteFileDSNW (LPCWSTR lpszFileName, LPCWSTR lpszAppName,
117 LPCWSTR lpszKeyName, LPWSTR lpszString)
H A DSQLValidDSN.c105 ValidDSNW (LPCWSTR lpszDSN)
141 SQLValidDSNW (LPCWSTR lpszDSN)
H A DSQLReadFileDSN.c145 SQLReadFileDSNW (LPCWSTR lpszFileName, LPCWSTR lpszAppName,
146 LPCWSTR lpszKeyName, LPWSTR lpszString, WORD cbString, WORD * pcbString)
H A DSQLGetPrivateProfileString.c263 SQLGetPrivateProfileStringW (LPCWSTR lpszSection, LPCWSTR lpszEntry,
264 LPCWSTR lpszDefault, LPWSTR lpszRetBuffer, int cbRetBuffer,
265 LPCWSTR lpszFilename)
370 SQLGetKeywordValueW (LPCWSTR lpszSection,
371 LPCWSTR lpszEntry, LPWSTR lpszBuffer, int cbBuffer, int *pcbBufOut)
H A DSQLInstallTranslator.c216 SQLInstallTranslatorW (LPCWSTR lpszInfFile, LPCWSTR lpszTranslator,
217 LPCWSTR lpszPathIn, LPWSTR lpszPathOut, WORD cbPathOutMax,
H A DSQLWriteDSNToIni.c87 extern BOOL ValidDSNW (LPCWSTR lpszDSN);
268 SQLWriteDSNToIniW (LPCWSTR lpszDSN, LPCWSTR lpszDriver)
H A DSQLCreateDataSource.c91 extern BOOL ValidDSNW (LPCWSTR lpszDSN);
218 SQLCreateDataSourceW (HWND hwndParent, LPCWSTR lpszDSN)
H A DSQLRemoveTranslator.c127 SQLRemoveTranslatorW (LPCWSTR lpszTranslator, LPDWORD lpdwUsageCount)
H A DSQLInstallTranslatorEx.c205 SQLInstallTranslatorExW (LPCWSTR lpszTranslator, LPCWSTR lpszPathIn,
/macosx-10.9.5/SmartCardServices-55111/src/PCSC/
H A Dwintypes.h79 typedef char *LPCWSTR typedef
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/win/
H A DDIBPixelData.h55 void writeToFile(LPCWSTR);
/macosx-10.9.5/WebCore-7537.78.1/platform/win/
H A DWindowsExtras.h38 inline HRESULT getRegistryValue(HKEY hkey, LPCWSTR pszSubKey, LPCWSTR pszValue, LPDWORD pdwType, LPVOID pvData, LPDWORD pcbData)
/macosx-10.9.5/CF-855.17/
H A DCFPlatformConverters.c135 if ((usedLen = WideCharToMultiByte(CFStringConvertEncodingToWindowsCodepage(encoding), dwFlags, (LPCWSTR)characters, numChars, (LPSTR)bytes, maxByteLen, NULL, NULL)) == 0) {
145 usedLen = WideCharToMultiByte(CFStringConvertEncodingToWindowsCodepage(encoding), dwFlags, (LPCWSTR)characters, numChars, NULL, 0, NULL, NULL);
149 if (WideCharToMultiByte(CFStringConvertEncodingToWindowsCodepage(encoding), dwFlags, (LPCWSTR)characters, numChars, (LPSTR)bytes, maxByteLen, NULL, NULL) == 0) {
155 while ((usedLen = WideCharToMultiByte(CFStringConvertEncodingToWindowsCodepage(encoding), dwFlags, (LPCWSTR)characters, ++numChars, (LPSTR)bytes, maxByteLen, NULL, NULL))) lastUsedLen = usedLen;
/macosx-10.9.5/iodbc-42.5/iodbc/iodbcadm/gtk/
H A Dmessagebox.c201 create_messagew (HWND hwnd, LPCWSTR dsn, LPCWSTR text)
/macosx-10.9.5/llvmCore-3425.0.33/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-string.h116 static LPCWSTR AnsiToUtf16(const char* c_str);
126 static const char* Utf16ToAnsi(LPCWSTR utf16_str);

Completed in 283 milliseconds

1234