diff options
Diffstat (limited to 'plugins/NewEventNotify/src')
-rw-r--r-- | plugins/NewEventNotify/src/main.cpp | 2 | ||||
-rw-r--r-- | plugins/NewEventNotify/src/menuitem.cpp | 2 | ||||
-rw-r--r-- | plugins/NewEventNotify/src/options.cpp | 2 | ||||
-rw-r--r-- | plugins/NewEventNotify/src/popup.cpp | 2 | ||||
-rw-r--r-- | plugins/NewEventNotify/src/stdafx.cxx (renamed from plugins/NewEventNotify/src/stdafx.cpp) | 2 | ||||
-rw-r--r-- | plugins/NewEventNotify/src/stdafx.h (renamed from plugins/NewEventNotify/src/neweventnotify.h) | 1 |
6 files changed, 5 insertions, 6 deletions
diff --git a/plugins/NewEventNotify/src/main.cpp b/plugins/NewEventNotify/src/main.cpp index 086a51f325..68adecd2aa 100644 --- a/plugins/NewEventNotify/src/main.cpp +++ b/plugins/NewEventNotify/src/main.cpp @@ -22,7 +22,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "neweventnotify.h"
+#include "stdafx.h"
int g_IsSrmmWindowAPI = 0;
extern PLUGIN_DATA* PopupList[20];
diff --git a/plugins/NewEventNotify/src/menuitem.cpp b/plugins/NewEventNotify/src/menuitem.cpp index 1db8e070c0..0098b1335f 100644 --- a/plugins/NewEventNotify/src/menuitem.cpp +++ b/plugins/NewEventNotify/src/menuitem.cpp @@ -22,7 +22,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "neweventnotify.h"
+#include "stdafx.h"
HGENMENU hMenuitemNotify;
BOOL bNotify;
diff --git a/plugins/NewEventNotify/src/options.cpp b/plugins/NewEventNotify/src/options.cpp index 8395553414..c944c10ab2 100644 --- a/plugins/NewEventNotify/src/options.cpp +++ b/plugins/NewEventNotify/src/options.cpp @@ -22,7 +22,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "neweventnotify.h"
+#include "stdafx.h"
PLUGIN_OPTIONS* options;
BOOL bWmNotify;
diff --git a/plugins/NewEventNotify/src/popup.cpp b/plugins/NewEventNotify/src/popup.cpp index d3dfa415f7..0dad1d5e4e 100644 --- a/plugins/NewEventNotify/src/popup.cpp +++ b/plugins/NewEventNotify/src/popup.cpp @@ -22,7 +22,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "neweventnotify.h"
+#include "stdafx.h"
extern int g_IsServiceAvail;
diff --git a/plugins/NewEventNotify/src/stdafx.cpp b/plugins/NewEventNotify/src/stdafx.cxx index 6d5ea3d6de..6fb37564b7 100644 --- a/plugins/NewEventNotify/src/stdafx.cpp +++ b/plugins/NewEventNotify/src/stdafx.cxx @@ -15,4 +15,4 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "neweventnotify.h"
\ No newline at end of file +#include "stdafx.h"
\ No newline at end of file diff --git a/plugins/NewEventNotify/src/neweventnotify.h b/plugins/NewEventNotify/src/stdafx.h index 1d73bb6d6c..9b1e1dcd74 100644 --- a/plugins/NewEventNotify/src/neweventnotify.h +++ b/plugins/NewEventNotify/src/stdafx.h @@ -24,7 +24,6 @@ //---------------------------
//---Includes
-#define _CRT_SECURE_NO_WARNINGS
#define _CRT_NONSTDC_NO_DEPRECATE
#include <stddef.h>
|