~ubuntu-branches/ubuntu/precise/wine/precise

« back to all changes in this revision

Viewing changes to dlls/d3d9/tests/volume.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:
22
22
static HWND create_window(void)
23
23
{
24
24
    WNDCLASS wc = {0};
25
 
    wc.lpfnWndProc = &DefWindowProc;
 
25
    wc.lpfnWndProc = DefWindowProc;
26
26
    wc.lpszClassName = "d3d9_test_wc";
27
27
    RegisterClass(&wc);
28
28