~ubuntu-branches/ubuntu/precise/wine1.3/precise

« back to all changes in this revision

Viewing changes to dlls/jscript/tests/jscript.c

  • Committer: Package Import Robot
  • Author(s): Scott Ritchie
  • Date: 2012-01-17 09:00:34 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120117090034-eyhpp02jawlvrrkc
Tags: 1.3.37-0ubuntu1
* New upstream release
  - Many changes
* Convert to 3.0 source format
* debian/control:
  - Remove pre-multiarch amd64 build depends
  - Remove quilt build depends
  - Recommend proper gecko versions
* debian/rules:
  - Remove manual dh_quilt patch and unpatch
  - No need to uuencode/uudecode anymore with new source format

Show diffs side-by-side

added added

removed removed

Lines of Context:
189
189
    return S_OK;
190
190
}
191
191
 
192
 
#undef ACTSCPSITE_THIS
193
 
 
194
192
static const IActiveScriptSiteVtbl ActiveScriptSiteVtbl = {
195
193
    ActiveScriptSite_QueryInterface,
196
194
    ActiveScriptSite_AddRef,
646
644
            &IID_IUnknown, (void**)&unk);
647
645
    ok(hres == CLASS_E_NOAGGREGATION || broken(E_INVALIDARG) /* win2k */,
648
646
       "CoCreateInstance failed: %08x, expected CLASS_E_NOAGGREGATION\n", hres);
649
 
    ok(!unk, "unk = %p\n", unk);
 
647
    ok(!unk || broken(unk != NULL), "unk = %p\n", unk);
650
648
}
651
649
 
652
650
static BOOL check_jscript(void)