WIN16APP.C
上传用户:lx1888888
上传日期:2007-01-04
资源大小:136k
文件大小:3k
源码类别:

驱动编程

开发平台:

Visual C++

  1. #include <windows.h>
  2. #include <string.h> 
  3. #include <stdio.h> 
  4. #include "..vxdpostvxd.h"
  5. typedef void (far * PVOIDFN)( void );
  6. HANDLE  hInst;
  7. PVOIDFN  pfVxDApi;
  8. DWORD hVM = 0;
  9. BOOL  bCreated = 0;
  10. int PASCAL WinMain(HANDLE, HANDLE, LPSTR, int);
  11. BOOL InitApplication(HANDLE);
  12. BOOL InitInstance(HANDLE, int);
  13. long CALLBACK __export MainWndProc(HWND, UINT, WPARAM, LPARAM);
  14. PVOIDFN GetVxdApiEntry( int VxdId )
  15. {
  16.   PVOIDFN pfApi;
  17.   _asm
  18.   {
  19.      xor di, di
  20.      mov es, di
  21.      mov bx, VxdId
  22.      mov ax, 1684h
  23.      int 2fh
  24.      mov WORD PTR pfApi+2, es
  25.      mov WORD PTR pfApi, di
  26.   }
  27.   return( pfApi );
  28. }
  29. int PASCAL WinMain(HANDLE hInstance, HANDLE hPrevInstance, LPSTR lpCmdLine, 
  30. int nCmdShow)
  31. {
  32. MSG msg;   
  33. if (hPrevInstance)  
  34.          return (FALSE);
  35. if (!InitApplication(hInstance)) 
  36.         return (FALSE);
  37. if (!InitInstance(hInstance, nCmdShow))
  38. return (FALSE);
  39. while (GetMessage(&msg,
  40.          NULL,   
  41.         NULL, 
  42.         NULL))
  43. {
  44. TranslateMessage(&msg);    
  45. DispatchMessage(&msg);     
  46. }
  47. return (msg.wParam);       
  48. }
  49. BOOL InitApplication(HANDLE hInstance)
  50. {
  51. WNDCLASS  wc;
  52. wc.style = NULL;   
  53. wc.lpfnWndProc = MainWndProc;
  54. wc.cbClsExtra = 0;
  55. wc.cbWndExtra = 0;      
  56. wc.hInstance = hInstance; 
  57. wc.hIcon = LoadIcon(hInstance, NULL);
  58. wc.hCursor = LoadCursor(NULL, IDC_ARROW);
  59. wc.hbrBackground = GetStockObject(WHITE_BRUSH);
  60. wc.lpszMenuName =  NULL;
  61. wc.lpszClassName = "PostWin16";
  62. return (RegisterClass(&wc));
  63. }
  64. BOOL InitInstance(HANDLE hInstance, int nCmdShow)
  65. {
  66. HWND hWnd;
  67.    WORD err;
  68. hInst = hInstance;
  69. hWnd = CreateWindow(
  70. "PostWin16",   
  71. "PostWin16",  
  72. WS_OVERLAPPEDWINDOW,
  73. CW_USEDEFAULT,
  74. CW_USEDEFAULT,
  75. CW_USEDEFAULT,
  76. CW_USEDEFAULT,
  77. NULL,
  78. NULL,
  79. hInstance,
  80. NULL 
  81. );
  82. if (!hWnd)
  83. return (FALSE);      
  84.     
  85. pfVxDApi = GetVxdApiEntry( POSTVXD_ID );
  86. if (!pfVxDApi)
  87. {
  88. MessageBox( hWnd, "Error, couldn't get VxD API", "USEAPI", MB_OK );
  89.       return FALSE;
  90. }
  91. _asm {
  92. mov ax, POSTVXD_REGISTER
  93. mov bx, [hWnd]
  94. mov cx, seg PostMessage
  95. mov dx, offset PostMessage
  96. call DWORD PTR pfVxDApi
  97.       mov   err, ax
  98.    }
  99.    if (err)
  100. {
  101.    MessageBox( hWnd, "Error registering callback", "USEAPI", MB_OK );
  102. return FALSE;
  103. }  
  104.     
  105. ShowWindow(hWnd, SW_SHOWNORMAL); 
  106. UpdateWindow(hWnd);
  107. return (TRUE);               
  108. }
  109. long CALLBACK __export MainWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
  110. {
  111. char buf[80]; 
  112. HDC hdc;
  113. PAINTSTRUCT ps;
  114. static RECT rect;
  115. switch (message)
  116. {
  117.     case WM_USER_POSTVXD:       
  118.             
  119. hVM = lParam;
  120. bCreated = wParam;
  121. InvalidateRect(hWnd, NULL, TRUE);
  122.       break;
  123.     case WM_DESTROY:          
  124.     _asm {
  125.     mov ax, POSTVXD_DEREGISTER
  126.     call DWORD PTR pfVxDApi
  127.       }
  128. PostQuitMessage(0);
  129. break;
  130. case WM_PAINT:
  131. sprintf(buf, "VM %08lx was %srn", hVM, bCreated ? "created" : "destroyed" );
  132. hdc = BeginPaint(hWnd, &ps);
  133. GetClientRect(hWnd, &rect);
  134. DrawText(hdc, buf, -1, &rect, 0);
  135. EndPaint(hWnd, &ps);
  136. break;
  137.     default:                 
  138. return (DefWindowProc(hWnd, message, wParam, lParam));
  139.     }
  140.     return (NULL);
  141. }