~ubuntu-wine/ubuntu/lucid/wine1.2/wine1.2+winepulse

« back to all changes in this revision

Viewing changes to dlls/dmband/dmband_main.c

  • Committer: Bazaar Package Importer
  • Author(s): Scott Ritchie
  • Date: 2010-02-02 11:15:03 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20100202111503-w4ayji21ei1ginjr
Tags: 1.1.37-0ubuntu1
* New upstream release
  - A number of fixes in AVI file support.
  - Several MSXML improvements.
  - A few MSI fixes.
  - Various bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 */
33
33
 
34
34
static HRESULT WINAPI BandCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
35
 
        FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
 
35
        FIXME("- no interface IID: %s\n", debugstr_guid(riid));
36
36
 
37
37
        if (ppobj == NULL) return E_POINTER;
38
 
        
 
38
 
39
39
        return E_NOINTERFACE;
40
40
}
41
41
 
84
84
 */
85
85
 
86
86
static HRESULT WINAPI BandTrackCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
87
 
        FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
88
 
        
 
87
        FIXME("- no interface IID: %s\n", debugstr_guid(riid));
 
88
 
89
89
        if (ppobj == NULL) return E_POINTER;
90
 
        
 
90
 
91
91
        return E_NOINTERFACE;
92
92
}
93
93