~ubuntu-branches/ubuntu/wily/scribus/wily-proposed

« back to all changes in this revision

Viewing changes to win32/vc9/pathcut/pathcutdll.cpp

  • Committer: Package Import Robot
  • Author(s): Mattia Rizzolo
  • Date: 2014-05-11 16:29:44 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20140511162944-y6jnp08arsfefy26
Tags: 1.4.2.dfsg.1+r18267-0.1
* Non-maintainer upload.
* Repack the source to remove some non-free contents. (Closes: #741666)
* debian/README.source: update to reflect the above changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// svgimport-1.3.0.cpp : d�finit le point d'entr�e pour l'application DLL.
2
 
//
3
 
 
4
 
#define WIN32_LEAN_AND_MEAN             // Exclure les en-t�tes Windows rarement utilis�s
5
 
// Fichiers d'en-t�te Windows�:
6
 
#include <windows.h>
7
 
 
8
 
BOOL APIENTRY DllMain( HANDLE hModule, 
9
 
                       DWORD  ul_reason_for_call, 
10
 
                       LPVOID lpReserved
11
 
                                         )
12
 
{
13
 
    return TRUE;
14
 
}
15