~ubuntu-branches/ubuntu/wily/mediatomb/wily-proposed

« back to all changes in this revision

Viewing changes to tombupnp/upnp/src/win_dll.c

  • Committer: Package Import Robot
  • Author(s): Steve Langasek
  • Date: 2015-08-12 15:51:30 UTC
  • mfrom: (4.1.15 sid)
  • Revision ID: package-import@ubuntu.com-20150812155130-54v3y5zta9oyuejg
Tags: 0.12.1-47-g7ab7616-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - debian/control:
    + Don't build-depend on libmozjs-dev.
  - debian/{mediatomb-daemon.mediatomb.upstart,rules}: Introduce upstart
    support to fix start-on-boot failure.
  - debian/rules: Disable JS support.
* Dropped changes:
  - drop OR depends on abrowser, which last existed in precise.
  - debian/mediatomb-daemon.postinst: no reason this needs an executable
    bit in the source package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// upnpLib.cpp : Defines the entry point for the DLL application.
 
2
//
 
3
 
 
4
#ifdef WIN32
 
5
 
 
6
#include <windows.h>
 
7
BOOL APIENTRY DllMain( HANDLE hModule, 
 
8
                       DWORD  ul_reason_for_call, 
 
9
                       LPVOID lpReserved
 
10
                                         )
 
11
{
 
12
        if (ul_reason_for_call == DLL_PROCESS_ATTACH) {
 
13
        }
 
14
    return TRUE;
 
15
}
 
16
 
 
17
#endif