~ubuntu-branches/ubuntu/maverick/wine/maverick

« back to all changes in this revision

Viewing changes to dlls/comdlg32/tests/printdlg.c

  • Committer: Bazaar Package Importer
  • Author(s): Scott Ritchie
  • Date: 2008-06-17 10:22:39 UTC
  • mfrom: (1.1.41 upstream)
  • Revision ID: james.westby@ubuntu.com-20080617102239-s8olx8ehtsdejmhz
Tags: 1.0.0-1ubuntu1
* New upstream release
  - First stable release of Wine
* Change to 1.0.0 versioning scheme since Wine will make a 1.0.1
* Remove dh_installchangelogs since the upstream changelog was removed
  - It is now available online at winehq.org

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
    LPCSTR  ptr;
52
52
 
53
53
    ptr = "comdlg32.dll";
54
 
    hcomdlg32 = LoadLibraryA(ptr);
55
 
    if (!hcomdlg32) return ptr;
 
54
    hcomdlg32 = GetModuleHandleA(ptr);
56
55
 
57
56
    ptr = "PrintDlgExA";
58
57
    pPrintDlgExA = (void *) GetProcAddress(hcomdlg32, ptr);