-
Notifications
You must be signed in to change notification settings - Fork 270
Expand file tree
/
Copy pathClassicDLL.cpp
More file actions
31 lines (25 loc) · 808 Bytes
/
ClassicDLL.cpp
File metadata and controls
31 lines (25 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//*********************************************************
//
// Copyright (c) Microsoft. All rights reserved.
// This code is licensed under the MIT License (MIT).
// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
//
//*********************************************************
// ClassicDLL.cpp : Defines the exported functions for the DLL application.
//
#include "stdafx.h"
#include <cstdlib>
#include <time.h>
#include <string>
using namespace std;
int Increment(int numberToIncrement)
{
return ++numberToIncrement;
}
const wchar_t * EditText(const wchar_t * s)
{
return L"Welcome to Build! Please give Andrew some applause! :)";
}