HomeSort by relevance Sort by last modified time
    Searched defs:BSTR (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/base/win/
scoped_bstr.h 18 // Manages a BSTR string pointer.
25 // Constructor to create a new BSTR.
27 // NOTE: Do not pass a BSTR to this constructor expecting ownership to
32 // Give ScopedBstr ownership over an already allocated BSTR or NULL.
33 // If you need to allocate a new BSTR instance, use |allocate| instead.
34 void Reset(BSTR bstr = NULL);
36 // Releases ownership of the BSTR to the caller.
37 BSTR Release();
39 // Creates a new BSTR from a 16-bit C-style string
    [all...]
  /external/lzma/CPP/Common/
MyCom.h 81 inline HRESULT StringToBstr(LPCOLESTR src, BSTR *bstr)
83 *bstr = ::SysAllocString(src);
84 return (*bstr != 0) ? S_OK : E_OUTOFMEMORY;
90 BSTR m_str;
123 operator BSTR() const { return m_str; }
124 BSTR* operator&() { return &m_str; }
125 BSTR MyCopy() const
128 BSTR res = ::SysAllocStringByteLen(NULL, byteLen);
133 void Attach(BSTR src) { m_str = src; }
    [all...]
MyWindows.h 52 typedef OLECHAR *BSTR;
171 BSTR bstrVal;
184 MY_EXTERN_C BSTR SysAllocStringByteLen(LPCSTR psz, UINT len);
185 MY_EXTERN_C BSTR SysAllocString(const OLECHAR *sz);
186 MY_EXTERN_C void SysFreeString(BSTR bstr);
187 MY_EXTERN_C UINT SysStringByteLen(BSTR bstr);
188 MY_EXTERN_C UINT SysStringLen(BSTR bstr);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
oleauto.h 43 WINOLEAUTAPI_(BSTR) SysAllocString(const OLECHAR *);
44 WINOLEAUTAPI_(INT) SysReAllocString(BSTR *,const OLECHAR *);
45 WINOLEAUTAPI_(BSTR) SysAllocStringLen(const OLECHAR *,UINT);
46 WINOLEAUTAPI_(INT) SysReAllocStringLen(BSTR *,const OLECHAR *,UINT);
47 WINOLEAUTAPI_(void) SysFreeString(BSTR);
48 WINOLEAUTAPI_(UINT) SysStringLen(BSTR);
49 WINOLEAUTAPI_(UINT) SysStringByteLen(BSTR bstr); variable
50 WINOLEAUTAPI_(BSTR) SysAllocStringByteLen(LPCSTR psz,UINT len);
100 WINOLEAUTAPI VectorFromBstr (BSTR bstr,SAFEARRAY **ppsa)
    [all...]
wtypes.h 669 typedef OLECHAR *BSTR;
670 typedef BSTR *LPBSTR;

Completed in 177 milliseconds