source: Include/api_shlwapi.sbp@ 141

Last change on this file since 141 was 141, checked in by イグトランス (egtra), 17 years ago

#50 API宣言の変更完了

File size: 1017 bytes
Line 
1' api_shlwapi.sbp
2
3
4#ifndef _INC_SHLWAPI
5#define _INC_SHLWAPI
6
7
8Declare Function PathGetArgsA Lib "shlwapi" Alias (pszPath As LPCWSTR) As LPWSTR
9Declare Function PathGetArgsW Lib "shlwapi" Alias (pszPath As LPCSTR) As LPSTR
10#ifdef UNICODE
11Declare Function PathGetArgs Lib "shlwapi" Alias "PathGetArgsW" (pszPath As LPCWSTR) As LPWSTR
12#else
13Declare Function PathGetArgs Lib "shlwapi" Alias "PathGetArgsA" (pszPath As LPCSTR) As LPSTR
14#endif
15
16Declare Function StrFormatByteSize64 Lib "shlwapi" Alias (ll As Int64, pszBuf As PWSTR, BufSize As DWord) As PWSTR
17Declare Function StrFormatByteSize64 Lib "shlwapi" Alias (ll As Int64, pszBuf As PSTR, BufSize As DWord) As PSTR
18#ifdef UNICODE
19Declare Function StrFormatByteSize64 Lib "shlwapi" Alias "StrFormatByteSize64W" (ll As Int64, pszBuf As PWSTR, BufSize As DWord) As PWSTR
20#else
21Declare Function StrFormatByteSize64 Lib "shlwapi" Alias "StrFormatByteSize64A" (ll As Int64, pszBuf As PSTR, BufSize As DWord) As PSTR
22#endif
23
24#endif '_INC_SHLWAPI
Note: See TracBrowser for help on using the repository browser.