mirror of
https://github.com/boostorg/python.git
synced 2026-01-27 19:12:16 +00:00
14 lines
253 B
C++
14 lines
253 B
C++
// vc6_prj.cpp : Defines the entry point for the DLL application.
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
|
|
BOOL APIENTRY DllMain( HANDLE hModule,
|
|
DWORD ul_reason_for_call,
|
|
LPVOID lpReserved
|
|
)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|