Advertisement
Guest User

Untitled

a guest
Jul 17th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. #ifndef RNAFUNCTIONS
  2. #define RNAFUNCTIONS
  3.  
  4. //declaration
  5. void fx();
  6.  
  7. #endif
  8.  
  9. #include <iostream>
  10. #include "RMAfunctions.h"
  11. using namespace std;
  12.  
  13. //definition
  14. void fx(){
  15. cout<<"hello Word"<<endl;
  16. }
  17.  
  18. #include <windows.h>
  19. #include <fstream>
  20. #include <string>
  21. #include <iostream>
  22. #include "RMAfunctions.h"
  23. using namespace std;
  24.  
  25. //I have tried calling fx() here
  26.  
  27. LRESULT CALLBACK WndProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) {
  28. //I have tried calling fx() here
  29. }
  30.  
  31. int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) {
  32. //I have tried calling fx() here
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement