mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-05 06:39:26 +02:00
... in many places where the function call will later need to be between modules (or libraries, or the executable) and the annotation will be a necessity to keep the linkage working on Windows. That's all that this sweeping commit does.
32 lines
720 B
C++
32 lines
720 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
Screenshot.h
|
|
|
|
Dominic Mazzoni
|
|
|
|
*******************************************************************//**
|
|
|
|
\file Screenshot.h
|
|
|
|
Opens a modeless dialog that aids in rearranging the project window
|
|
to a canonical size and state and then capturing full and partial
|
|
screenshots to disk.
|
|
|
|
*//*******************************************************************/
|
|
|
|
#ifndef __AUDACITY_SCREENSHOT__
|
|
#define __AUDACITY_SCREENSHOT__
|
|
|
|
|
|
|
|
#include <wx/defs.h>
|
|
|
|
class AudacityProject;
|
|
|
|
AUDACITY_DLL_API void OpenScreenshotTools( AudacityProject &project );
|
|
void CloseScreenshotTools();
|
|
|
|
#endif // __AUDACITY_SCREENSHOT__
|