#include <windows.h>
#include <windowsx.h>
#include <tchar.h>
#include "globals.h"
#include "message.h"
#include "matrix.h"
#include "resource.h"
Go to the source code of this file.
◆ BOOL()
◆ HMONITOR()
◆ MonitorEnumProc()
Definition at line 33 of file screensave.c.
34{
36
37
39
40
41
44
46}
HWND CreateScreenSaveWnd(HWND hwndParent, RECT *rect)
BOOL WINAPI SetWindowPos(_In_ HWND, _In_opt_ HWND, _In_ int, _In_ int, _In_ int, _In_ int, _In_ UINT)
Referenced by CDesktopBrowser::_Resize(), and ScreenSaver().
◆ ParseCommandLine()
Definition at line 103 of file screensave.c.
104{
105 UCHAR ch = *szCmdLine++;
106
107 if(ch == '-' || ch == '/')
108 ch = *szCmdLine++;
109
110 if(ch >= 'A' && ch <= 'Z')
111 ch += 'a' - 'A';
112
113 *chOption = ch;
114 ch = *szCmdLine++;
115
116 if(ch == ':')
117 ch = *szCmdLine++;
118
119 while(ch == ' ' || ch == '\t')
120 ch = *szCmdLine++;
121
123 {
126 }
127 else
129}
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
_Check_return_ _CRTIMP int __cdecl _wtoi(_In_z_ const wchar_t *_Str)
Referenced by wWinMain().
◆ ScreenSaver()
Definition at line 51 of file screensave.c.
52{
56
58
60
61
64
65
67 {
69 }
70
71 else
72 {
74
79
81 }
82
83
85 {
88 }
89
91
93}
#define GetProcAddress(x, y)
void InitScreenSaveClass()
BOOL CALLBACK MonitorEnumProc(HMONITOR hMonitor, HDC hdcMonitor, RECT *rcMonitor, LPARAM Param)
TW_UINT32 TW_UINT16 TW_UINT16 MSG
BOOL WINAPI TranslateMessage(_In_ const MSG *)
#define SystemParametersInfo
int WINAPI GetSystemMetrics(_In_ int)
Referenced by wWinMain().
◆ wWinMain()
This file has no copyright assigned and is placed in the Public Domain. This file is part of the w64 mingw-runtime package. No warranty is given; refer to the file DISCLAIMER.PD within this package.
Definition at line 134 of file screensave.c.
135{
138
139
140
142 {
143 return 0;
144 }
145
147
149
150 switch(chOption)
151 {
157 }
158
159 return 0;
160}
BOOL ChangePassword(HWND hwnd)
static LRESULT Configure(const CodecInfo *pi, HWND hWnd)
VOID ParseCommandLine(LPWSTR szCmdLine, UCHAR *chOption, HWND *hwndParent)
BOOL ScreenSaver(HWND hwndParent)
◆ LPARAM
◆ LPCRECT
◆ LPMONITORINFO
◆ MONITORENUMPROC